Example usage for org.antlr.v4.runtime.misc IntervalSet EMPTY_SET

List of usage examples for org.antlr.v4.runtime.misc IntervalSet EMPTY_SET

Introduction

In this page you can find the example usage for org.antlr.v4.runtime.misc IntervalSet EMPTY_SET.

Prototype

IntervalSet EMPTY_SET

To view the source code for org.antlr.v4.runtime.misc IntervalSet EMPTY_SET.

Click Source Link

Usage

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;
}