Skip to content

Commit dc0b5d4

Browse files
author
Gerald Unterrainer
committed
update ANTLR4 parser
1 parent c8d3b97 commit dc0b5d4

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

antlr4/.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"antlr4.generation": {
33
"mode": "external",
4-
"language": "Java",
54
"visitors": true,
6-
"outputDir": "C:/code/java-http-server/src/main/java/info/unterrainer/commons/httpserver/antlr",
5+
"outputDir": "C:/code/JAVA/java-http-server/src/main/java/info/unterrainer/commons/httpserver/antlr",
76
"package": "info.unterrainer.commons.httpserver.antlr"
87
},
98
"antlr4.referencesCodeLens.enabled": true

src/main/java/info/unterrainer/commons/httpserver/antlr/RqlBaseListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from c:\code\java-http-server\antlr4\Rql.g4 by ANTLR 4.8
1+
// Generated from c:\code\JAVA\java-http-server\antlr4\Rql.g4 by ANTLR 4.9.2
22
package info.unterrainer.commons.httpserver.antlr;
33

44
import org.antlr.v4.runtime.ParserRuleContext;

src/main/java/info/unterrainer/commons/httpserver/antlr/RqlBaseVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from c:\code\java-http-server\antlr4\Rql.g4 by ANTLR 4.8
1+
// Generated from c:\code\JAVA\java-http-server\antlr4\Rql.g4 by ANTLR 4.9.2
22
package info.unterrainer.commons.httpserver.antlr;
33
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
44

src/main/java/info/unterrainer/commons/httpserver/antlr/RqlLexer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from c:\code\java-http-server\antlr4\Rql.g4 by ANTLR 4.8
1+
// Generated from c:\code\JAVA\java-http-server\antlr4\Rql.g4 by ANTLR 4.9.2
22
package info.unterrainer.commons.httpserver.antlr;
33
import org.antlr.v4.runtime.Lexer;
44
import org.antlr.v4.runtime.CharStream;
@@ -11,7 +11,7 @@
1111

1212
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
1313
public class RqlLexer extends Lexer {
14-
static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
14+
static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); }
1515

1616
protected static final DFA[] _decisionToDFA;
1717
protected static final PredictionContextCache _sharedContextCache =

src/main/java/info/unterrainer/commons/httpserver/antlr/RqlListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from c:\code\java-http-server\antlr4\Rql.g4 by ANTLR 4.8
1+
// Generated from c:\code\JAVA\java-http-server\antlr4\Rql.g4 by ANTLR 4.9.2
22
package info.unterrainer.commons.httpserver.antlr;
33
import org.antlr.v4.runtime.tree.ParseTreeListener;
44

src/main/java/info/unterrainer/commons/httpserver/antlr/RqlParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from c:\code\java-http-server\antlr4\Rql.g4 by ANTLR 4.8
1+
// Generated from c:\code\JAVA\java-http-server\antlr4\Rql.g4 by ANTLR 4.9.2
22
package info.unterrainer.commons.httpserver.antlr;
33
import org.antlr.v4.runtime.atn.*;
44
import org.antlr.v4.runtime.dfa.DFA;
@@ -11,7 +11,7 @@
1111

1212
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
1313
public class RqlParser extends Parser {
14-
static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
14+
static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); }
1515

1616
protected static final DFA[] _decisionToDFA;
1717
protected static final PredictionContextCache _sharedContextCache =

src/main/java/info/unterrainer/commons/httpserver/antlr/RqlVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from c:\code\java-http-server\antlr4\Rql.g4 by ANTLR 4.8
1+
// Generated from c:\code\JAVA\java-http-server\antlr4\Rql.g4 by ANTLR 4.9.2
22
package info.unterrainer.commons.httpserver.antlr;
33
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
44

0 commit comments

Comments
 (0)