Skip to content

Commit

Permalink
upgrade antlr to 4.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
C.A.P. Linssen committed Oct 17, 2024
1 parent 7ea96ec commit 8203945
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pynestml/generated/PyNestMLLexer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from PyNestMLLexer.g4 by ANTLR 4.13.1
# Generated from PyNestMLLexer.g4 by ANTLR 4.13.2
from antlr4 import *
from io import StringIO
import sys
Expand Down Expand Up @@ -439,7 +439,7 @@ class PyNestMLLexer(PyNestMLLexerBase):

def __init__(self, input=None, output:TextIO = sys.stdout):
super().__init__(input, output)
self.checkVersion("4.13.1")
self.checkVersion("4.13.2")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
Expand Down
4 changes: 2 additions & 2 deletions pynestml/generated/PyNestMLParser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from PyNestMLParser.g4 by ANTLR 4.13.1
# Generated from PyNestMLParser.g4 by ANTLR 4.13.2
# encoding: utf-8
from antlr4 import *
from io import StringIO
Expand Down Expand Up @@ -441,7 +441,7 @@ class PyNestMLParser ( Parser ):

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

Expand Down
2 changes: 1 addition & 1 deletion pynestml/generated/PyNestMLParserVisitor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from PyNestMLParser.g4 by ANTLR 4.13.1
# Generated from PyNestMLParser.g4 by ANTLR 4.13.2
from antlr4 import *
if "." in __name__:
from .PyNestMLParser import PyNestMLParser
Expand Down

0 comments on commit 8203945

Please sign in to comment.