~madcapjake/rhi

a102d025af1b18b316472afcae58af2cbb9cdb74 — Jake Russo 1 year, 6 months ago a014098
Add REPL to vscode launch.json
1 files changed, 18 insertions(+), 2 deletions(-)

M .vscode/launch.json
M .vscode/launch.json => .vscode/launch.json +18 -2
@@ 27,12 27,28 @@

                "foo .= 10",
                "bar .= 3",
                "foo ** bar // 6"
                "foo ++ 5"
            ],
            "env": {
                "RHUMB_VISITOR_DEBUG": "0",
                "RHUMB_CODE_ARRAY_DEBUG": "0",
                "RHUMB_VM_DEBUG": "0"
                "RHUMB_VM_DEBUG": "1"
            }
        },
        {
            "name": "Launch rhumb REPL",
            "type": "go",
            "request": "launch",
            "mode": "debug",
            "console": "integratedTerminal",
            "program": "cmd/rhumb/main.go",
            "args": [
                "repl"
            ],
            "env": {
                "RHUMB_VISITOR_DEBUG": "1",
                "RHUMB_CODE_ARRAY_DEBUG": "1",
                "RHUMB_VM_DEBUG": "1"
            }
        }