From adf7d65648f2a2f9e87c56f2da1be77e34b0e4a0 Mon Sep 17 00:00:00 2001 From: Ajey K Date: Mon, 31 Jul 2023 18:06:59 +0530 Subject: [PATCH] Added steps to generate files for antlr --- src/processor/comparison/comparisonantlr/Readme.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/processor/comparison/comparisonantlr/Readme.txt diff --git a/src/processor/comparison/comparisonantlr/Readme.txt b/src/processor/comparison/comparisonantlr/Readme.txt new file mode 100644 index 00000000..e3bf2f3b --- /dev/null +++ b/src/processor/comparison/comparisonantlr/Readme.txt @@ -0,0 +1,12 @@ +Update the parser, lexer and token files for changes in comparator.g4 file. +cd /src/processor/comparison/comparisonantlr +Install antlr tools +pip install antlr4-tools +Generate the files +antlr4 -Dlanguage=Python3 comparator.g4 +Commit and push the files to thee branch. +git add comparatorLexer.py comparatorListener.py comparatorParser.py +git commit -m "Updated parser and lexer generated files for 4.13.0 version" +git push origin + +