List of usage examples for org.antlr.v4.runtime.misc IntervalSet EMPTY_SET
IntervalSet EMPTY_SET
To view the source code for org.antlr.v4.runtime.misc IntervalSet EMPTY_SET.
Click Source Link
From source file:org.tvl.goworks.editor.go.semantics.TreeCorrectionParserATNSimulator.java
License:Open Source License
private IntervalSet getSuppressedSet(int startIndex) { IntervalSet suppressedSet = suppressedRules.get(startIndex); if (suppressedSet == null) { return IntervalSet.EMPTY_SET; }//from w w w. j a v a2 s . com return suppressedSet; }