upd: further config environment

This commit is contained in:
2023-11-06 16:13:31 +08:00
parent 4efd7f25e8
commit 5947221e97
3 changed files with 39 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"name": "Debug ANTLR4 grammar",
"type": "antlr-debug",
"request": "launch",
"input": "./a.txt", // 输入文件(即你要运行的 Python 代码文件)
"input": "/tmp/prog.py", // 输入文件(即你要运行的 Python 代码文件)
"grammar": "./resources/Python3Parser.g4", // 语法文件
"startRule": "file_input", // 语法入口规则,我们的公式语法入口规则是 file_input
"printParseTree": true, // 是否 打印/可视化 parse tree