Merge branch 'master' of github.com:antlr/antlr4
This commit is contained in:
commit
2c871250f4
|
@ -114,12 +114,6 @@ public class Antlr4Mojo extends AbstractMojo {
|
||||||
@Parameter(property = "antlr4.treatWarningsAsErrors", defaultValue = "false")
|
@Parameter(property = "antlr4.treatWarningsAsErrors", defaultValue = "false")
|
||||||
protected boolean treatWarningsAsErrors;
|
protected boolean treatWarningsAsErrors;
|
||||||
|
|
||||||
/**
|
|
||||||
* add config set to DFA states
|
|
||||||
*/
|
|
||||||
@Parameter(defaultValue = "false")
|
|
||||||
protected boolean verbose_dfa;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* use the ATN simulator for all predictions
|
* use the ATN simulator for all predictions
|
||||||
*/
|
*/
|
||||||
|
@ -349,10 +343,6 @@ public class Antlr4Mojo extends AbstractMojo {
|
||||||
args.add("-Werror");
|
args.add("-Werror");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (verbose_dfa) {
|
|
||||||
args.add("-Xverbose-dfa");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (forceATN) {
|
if (forceATN) {
|
||||||
args.add("-Xforce-atn");
|
args.add("-Xforce-atn");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue