introduce transpile to cpp

This commit is contained in:
2020-10-30 20:35:01 +05:30
parent e6e225b639
commit 75f71259a0
9 changed files with 263 additions and 45 deletions

19
.vscode/launch.json vendored
View File

@@ -47,6 +47,25 @@
}
]
},
{
"name": "GDB - simple.bfe - Translate to BF",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.out",
"args": ["samples/simple.bfe","-a","bf"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "GDB - group.bfe",
"type": "cppdbg",