Skip to content

Commit

Permalink
Regenerated ANTLR code for v4.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka Žaja committed Nov 20, 2023
1 parent 1eed487 commit aad88e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"antlr4.generation": {
"alternativeJar": "C:\\Users\\Luka\\Projects\\Python\\antlr-4.12.0-complete.jar",
"alternativeJar": "C:\\Users\\Luka\\Projects\\Python\\antlr-4.13.1-complete.jar",
"language": "Python3",
"listeners": false,
"mode": "external",
Expand Down
4 changes: 2 additions & 2 deletions src/refind_btrfs/boot/antlr4/RefindConfigLexer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from c:\Users\Luka\Projects\Python\refind-btrfs\src\refind_btrfs\boot\antlr4\RefindConfigLexer.g4 by ANTLR 4.12.0
# Generated from c:/Users/Luka/Projects/Python/refind-btrfs/src/refind_btrfs/boot/antlr4/RefindConfigLexer.g4 by ANTLR 4.13.1
from antlr4 import *
from io import StringIO
import sys
Expand Down Expand Up @@ -427,7 +427,7 @@ class RefindConfigLexer(Lexer):

def __init__(self, input=None, output:TextIO = sys.stdout):
super().__init__(input, output)
self.checkVersion("4.12.0")
self.checkVersion("4.13.1")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
Expand Down
4 changes: 2 additions & 2 deletions src/refind_btrfs/boot/antlr4/RefindConfigParser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from c:\Users\Luka\Projects\Python\refind-btrfs\src\refind_btrfs\boot\antlr4\RefindConfigParser.g4 by ANTLR 4.12.0
# Generated from c:/Users/Luka/Projects/Python/refind-btrfs/src/refind_btrfs/boot/antlr4/RefindConfigParser.g4 by ANTLR 4.13.1
# encoding: utf-8
from antlr4 import *
from io import StringIO
Expand Down Expand Up @@ -132,7 +132,7 @@ class RefindConfigParser ( Parser ):

def __init__(self, input:TokenStream, output:TextIO = sys.stdout):
super().__init__(input, output)
self.checkVersion("4.12.0")
self.checkVersion("4.13.1")
self._interp = ParserATNSimulator(self, self.atn, self.decisionsToDFA, self.sharedContextCache)
self._predicates = None

Expand Down
4 changes: 2 additions & 2 deletions src/refind_btrfs/boot/antlr4/RefindConfigParserVisitor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated from c:\Users\Luka\Projects\Python\refind-btrfs\src\refind_btrfs\boot\antlr4\RefindConfigParser.g4 by ANTLR 4.12.0
# Generated from c:/Users/Luka/Projects/Python/refind-btrfs/src/refind_btrfs/boot/antlr4/RefindConfigParser.g4 by ANTLR 4.13.1
from antlr4 import *
if __name__ is not None and "." in __name__:
if "." in __name__:
from .RefindConfigParser import RefindConfigParser
else:
from RefindConfigParser import RefindConfigParser
Expand Down

0 comments on commit aad88e5

Please sign in to comment.