from static method

Implementation

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

    return OperatorExpression(
        ValidIdentifier.fromIterable(left),
        ListOfWhiteSpace.fromIterable([Space()]),
        EqualEqual.constant(),
        ListOfWhiteSpace.fromIterable([Space()]),
        ValidIdentifier.fromIterable(right),
    );

}