remove -Xsave-lexer option; log file as implicit lexer AST. Fixes antlr/antlr4#82
This commit is contained in:
parent
9e3907d573
commit
346da8b863
|
@ -16,6 +16,8 @@ December 1, 2012
|
|||
|
||||
* tokens now have token and char source to draw from.
|
||||
|
||||
* remove -Xsave-lexer option; log file as implicit lexer AST.
|
||||
|
||||
November 30, 2012
|
||||
|
||||
* Maven updates (cleanup, unification, and specify Java 6 bootstrap classpath)
|
||||
|
|
|
@ -121,7 +121,6 @@ public class Tool {
|
|||
public boolean generate_ATN_dot = false;
|
||||
public String grammarEncoding = null; // use default locale's encoding
|
||||
public String msgFormat = "antlr";
|
||||
public boolean saveLexer = false;
|
||||
public boolean launch_ST_inspector = false;
|
||||
public boolean force_atn = false;
|
||||
public boolean log = false;
|
||||
|
@ -147,7 +146,6 @@ public class Tool {
|
|||
new Option("gen_dependencies", "-depend", "generate file dependencies"),
|
||||
new Option("", "-D<option>=value", "set/override a grammar-level option"),
|
||||
new Option("warnings_are_errors", "-Werror", "treat warnings as errors"),
|
||||
new Option("saveLexer", "-Xsave-lexer", "save temp lexer file created for combined grammars"),
|
||||
new Option("launch_ST_inspector", "-XdbgST", "launch StringTemplate visualizer on generated code"),
|
||||
new Option("force_atn", "-Xforce-atn", "use the ATN simulator for all predictions"),
|
||||
new Option("log", "-Xlog", "dump lots of logging info to antlr-timestamp.log"),
|
||||
|
|
Loading…
Reference in New Issue