github.com/nevalang/neva@v0.23.1-0.20240507185603-7696a9bb8dda/.vscode/launch.json (about)

     1  {
     2    "version": "0.2.0",
     3    "configurations": [
     4      {
     5        "name": "GET",
     6        "type": "go",
     7        "request": "launch",
     8        "mode": "auto",
     9        "program": "${workspaceFolder}/cmd/neva",
    10        "cwd": "${workspaceFolder}/examples",
    11        "args": ["get", "github.com/nevalang/x"]
    12      },
    13      {
    14        "name": "RUN",
    15        "type": "go",
    16        "request": "launch",
    17        "mode": "auto",
    18        "program": "${workspaceFolder}/cmd/neva",
    19        "cwd": "${workspaceFolder}",
    20        "args": ["run", "examples/image/minimal_png"]
    21      },
    22      {
    23        "name": "LSP",
    24        "type": "go",
    25        "request": "launch",
    26        "mode": "auto",
    27        "program": "${workspaceFolder}/cmd/lsp",
    28        "cwd": "${workspaceFolder}",
    29        "args": ["-debug"]
    30      },
    31      {
    32        "name": "ANTLR",
    33        "type": "antlr-debug",
    34        "request": "launch",
    35        "input": "${workspaceFolder}/internal/compiler/parser/tests/happypath/027_compiler_directives.neva",
    36        "grammar": "${workspaceFolder}/internal/compiler/parser/neva.g4",
    37        "startRule": "prog",
    38        "printParseTree": true,
    39        "visualParseTree": true
    40      }
    41    ]
    42  }