Skip to content

Commit e9a6cd3

Browse files
committed
moved some jjt options from pom.xml to JSqlParserCC.jjt
1 parent 3293023 commit e9a6cd3

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,6 @@
106106
</goals>
107107
</execution>
108108
</executions>
109-
<configuration>
110-
<nodeDefaultVoid>true</nodeDefaultVoid>
111-
<visitor>true</visitor>
112-
<trackTokens>true</trackTokens>
113-
</configuration>
114109
<dependencies>
115110
<dependency>
116111
<groupId>net.java.dev.javacc</groupId>

src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,21 @@
2121
*/
2222

2323
options{
24-
IGNORE_CASE=true ;
25-
STATIC=false;
26-
DEBUG_PARSER=false;
27-
DEBUG_LOOKAHEAD=false;
28-
DEBUG_TOKEN_MANAGER=false;
29-
CACHE_TOKENS=false;
30-
// FORCE_LA_CHECK=true;
31-
UNICODE_INPUT=true;
24+
IGNORE_CASE = true ;
25+
STATIC = false;
26+
DEBUG_PARSER = false;
27+
DEBUG_LOOKAHEAD = false;
28+
DEBUG_TOKEN_MANAGER = false;
29+
CACHE_TOKENS = false;
30+
// FORCE_LA_CHECK = true;
31+
UNICODE_INPUT = true;
3232
JAVA_TEMPLATE_TYPE = "modern";
3333
JDK_VERSION = "1.7";
34-
TOKEN_EXTENDS ="BaseToken";
35-
COMMON_TOKEN_ACTION=true;
34+
TOKEN_EXTENDS = "BaseToken";
35+
COMMON_TOKEN_ACTION = true;
36+
NODE_DEFAULT_VOID = true;
37+
TRACK_TOKENS = true;
38+
VISITOR = true;
3639
}
3740

3841
PARSER_BEGIN(CCJSqlParser)

0 commit comments

Comments
 (0)