ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

debug.json (440B)



// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
  {
    "label": "Debug native binary",
    "build": {
      "command": "make",
      "args": ["check"],
      "cwd": "$ZED_WORKTREE_ROOT"
    },
    "program": "$ZED_WORKTREE_ROOT/oxc",
    "args": ["$ZED_WORKTREE_ROOT/tests/ex-return-func-call.ox"],
    "request": "launch",
    "adapter": "CodeLLDB"
  }
]