lox_one 0.1.0

A tree-walking interpreter for the Lox programming language.
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in library 'lox-one'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--lib",
                    "--package=lox-one"
                ],
                "filter": {
                    "name": "lox-one",
                    "kind": "lib"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'lox-one'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=lox-one",
                    "--package=lox-one"
                ],
                "filter": {
                    "name": "lox-one",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'lox-one'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=lox-one",
                    "--package=lox-one"
                ],
                "filter": {
                    "name": "lox-one",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}