List of usage examples for org.antlr.v4.runtime.atn ATNConfigSet toString
@Override
public String toString()
From source file:net.fchauvel.trio.core.storage.parsing.SystemErrorListener.java
License:Open Source License
@Override public void reportContextSensitivity(Parser recognizer, DFA dfa, int startIndex, int stopIndex, int prediction, ATNConfigSet configs) { final String error = String.format("Line %d: expected %s", stopIndex, configs.toString()); errors.add(error);//www. j a v a2s .co m }