Fix for [ 694111 ] Syntax error crashes Checkstyle.

This commit is contained in:
Oleg Sukhodolsky 2003-06-10 21:08:13 +00:00
parent 88f6d6ffe7
commit 494d1835fb
2 changed files with 2 additions and 2 deletions

View File

@ -940,7 +940,7 @@ options {
exportVocab=GeneratedJava; // call the vocabulary "Java"
testLiterals=false; // don't automatically test for literals
k=4; // four characters of lookahead
charVocabulary='\u0003'..'\uFFFF';
charVocabulary='\u0003'..'\uFFFE';
// without inlining some bitset tests, couldn't do unicode;
// I need to make ANTLR generate smaller bitsets; see
// bottom of JavaLexer.java

View File

@ -59,7 +59,7 @@ options {
exportVocab=GeneratedJava14; // call the vocabulary "Java14",
testLiterals=false; // don't automatically test for literals
k=4; // four characters of lookahead
charVocabulary='\u0003'..'\uFFFF';
charVocabulary='\u0003'..'\uFFFE';
codeGenBitsetTestThreshold=20;
}