isLeftAssoc method

  1. @override
bool isLeftAssoc()
override

Gets whether this operator is left associative (true) or if this operator is right associative (false).

Returns true if this operator is left associative.

Implementation

@override
bool isLeftAssoc() {
  return leftAssoc;
}