no more -trace
[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 9826]
This commit is contained in:
parent
78c7c254a0
commit
2e8a5f391a
|
@ -5,4 +5,5 @@ Jan 4, 2012
|
||||||
* '_' was allowed first in symbol names in grammar
|
* '_' was allowed first in symbol names in grammar
|
||||||
* fix unit tests
|
* fix unit tests
|
||||||
* Allow labels in left-recursive rules
|
* Allow labels in left-recursive rules
|
||||||
* lr rules now gen only 1 rule e->e not e->e_ etc... altered tests to build parse trees.
|
* lr rules now gen only 1 rule e->e not e->e_ etc... altered tests to build parse trees.
|
||||||
|
* no more -trace, use Parser.setTrace(true)
|
|
@ -103,7 +103,6 @@ public class Tool {
|
||||||
new Option("printGrammar", "-print", "print out the grammar without actions"),
|
new Option("printGrammar", "-print", "print out the grammar without actions"),
|
||||||
new Option("debug", "-debug", "generate a parser that emits debugging events"),
|
new Option("debug", "-debug", "generate a parser that emits debugging events"),
|
||||||
new Option("profile", "-profile", "generate a parser that computes profiling information"),
|
new Option("profile", "-profile", "generate a parser that computes profiling information"),
|
||||||
new Option("trace", "-trace", "generate a recognizer that traces rule entry/exit"),
|
|
||||||
new Option("generate_ATN_dot", "-atn", "generate rule augmented transition networks"),
|
new Option("generate_ATN_dot", "-atn", "generate rule augmented transition networks"),
|
||||||
new Option("grammarEncoding", "-encoding", OptionArgType.STRING, "specify grammar file encoding; e.g., euc-jp"),
|
new Option("grammarEncoding", "-encoding", OptionArgType.STRING, "specify grammar file encoding; e.g., euc-jp"),
|
||||||
new Option("msgFormat", "-message-format", OptionArgType.STRING, "specify output style for messages"),
|
new Option("msgFormat", "-message-format", OptionArgType.STRING, "specify output style for messages"),
|
||||||
|
|
Loading…
Reference in New Issue