HomeSort by relevance Sort by last modified time
    Searched refs:inputSymbol (Results 1 - 2 of 2) sorted by null

  /external/antlr/src/org/antlr/runtime/
Lexer.java 332 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
333 super.traceIn(ruleName, ruleIndex, inputSymbol);
337 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
338 super.traceOut(ruleName, ruleIndex, inputSymbol);
BaseRecognizer.java 865 public void traceIn(String ruleName, int ruleIndex, Object inputSymbol) {
866 System.out.print("enter "+ruleName+" "+inputSymbol);
875 Object inputSymbol)
877 System.out.print("exit "+ruleName+" "+inputSymbol);

Completed in 70 milliseconds