isEpsilon property

bool isEpsilon

Determines if the transition is an "epsilon" transition.

The default implementation returns [false].

@return true if traversing this transition in the ATN does not consume an input symbol; otherwise, false if traversing this transition consumes (matches) an input symbol.

Implementation

bool get isEpsilon => false;