Fixed CS_UNICODE_ESCAPE = true;

This commit is contained in:
2023-05-14 20:33:04 +02:00
parent 21b8c43ceb
commit 7d6e9e9a29
4 changed files with 31 additions and 31 deletions

View File

@@ -272,7 +272,7 @@ public class ParseGen extends CSJavaCCGlobals implements CSJavaCCParserConstants
ostr.println(" jj_initialized_once = true;");
}
if (Options.getCSUnicodeEscape()) {
ostr.println(" jj_input_stream = new JavaCharStream(stream, 1, 1);");
ostr.println(" jj_input_stream = new CSCharStream(stream, 1, 1);");
} else {
ostr.println(" jj_input_stream = new SimpleCharStream(stream, 1, 1);");
}