ox

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

debug.json (436B)


      1 // Project-local debug tasks
      2 //
      3 // For more documentation on how to configure debug tasks,
      4 // see: https://zed.dev/docs/debugger
      5 [
      6   {
      7     "label": "Debug native binary",
      8     "build": {
      9       "command": "make",
     10       "args": ["check"],
     11       "cwd": "$ZED_WORKTREE_ROOT"
     12     },
     13     "program": "$ZED_WORKTREE_ROOT/oxc",
     14     "args": ["$ZED_WORKTREE_ROOT/tests/ex-closure-args.ox"],
     15     "request": "launch",
     16     "adapter": "CodeLLDB"
     17   }
     18 ]