index property

  1. @override
int index
override

Return the index into the stream of the input symbol referred to by {@code LA(1)}.

The behavior of this method is unspecified if no call to an {@link IntStream initializing method} has occurred after this stream was constructed.

Implementation

@override
int get index {
  return _index;
}