upd: add some files
This commit is contained in:
16
.vscode/launch.json
vendored
Normal file
16
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"version": "2.3.1",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"name": "Debug ANTLR4 grammar",
|
||||
"type": "antlr-debug",
|
||||
"request": "launch",
|
||||
"input": "./a.txt", // 输入文件(即你要运行的 Python 代码文件)
|
||||
"grammar": "./resources/Python3Parser.g4", // 语法文件
|
||||
"startRule": "file_input", // 语法入口规则,我们的公式语法入口规则是 file_input
|
||||
"printParseTree": true, // 是否 打印/可视化 parse tree
|
||||
"visualParseTree": true
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user