from static method

Implementation

static InExpression from(Iterable<Identifierable> left, Iterable<Identifierable> right) {

    return InExpression(
        ValidIdentifier.fromIterable(left),
        ListOfWhiteSpace.fromIterable([Space()]),
        In.constant(),
        ListOfWhiteSpace.fromIterable([Space()]),
        ValidIdentifier.fromIterable(right),
    );

}