Files
BH-Python-Interpreter-2023/resources/gen.sh
Wankupi 2e29af68b3 init
2023-10-30 19:50:48 +08:00

14 lines
269 B
Bash
Executable File

#!/bin/bash
cd $(dirname $0)
antlr4 -no-listener -visitor -Dlanguage=Cpp Python3Lexer.g4 Python3Parser.g4 -o "../generated"
###
#
# If you do no want to do the bonus of
# "Supporting More Grammar of Python",
# You do no need to understand this file currently.
#
###