Example usage for org.antlr.v4.runtime.dfa DFA toLexerString

List of usage examples for org.antlr.v4.runtime.dfa DFA toLexerString

Introduction

In this page you can find the example usage for org.antlr.v4.runtime.dfa DFA toLexerString.

Prototype

public String toLexerString() 

Source Link

Usage

From source file:com.fizzed.rocker.compiler.DescriptiveErrorListener.java

License:Apache License

@Override
public void reportAttemptingFullContext(Parser parser, DFA dfa, int line, int posInLine, BitSet bitset,
        ATNConfigSet atncs) {/*from  w  w  w  .  j  a v  a2s.  c  o m*/
    log.trace("reportAttemptingFullContext: line=" + line + ", posInLine=" + posInLine + " dfa="
            + dfa.toLexerString());
}