remove -Xsave-lexer option; log file as implicit lexer AST. Fixes antlr/antlr4#82

This commit is contained in:
Terence Parr 2012-12-01 17:30:12 -08:00
parent 9e3907d573
commit 346da8b863
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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"),