Skip to content

Commit

Permalink
WIP: Support for rr modes
Browse files Browse the repository at this point in the history
  • Loading branch information
lggomez committed Mar 11, 2021
1 parent a319988 commit 6075579
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -532,11 +532,28 @@
"debug",
"remote",
"test",
"exec"
"exec",
"replay",
"coredump"
],
"description": "One of 'auto', 'debug', 'remote', 'test', 'exec'.",
"description": "One of 'auto', 'debug', 'remote', 'test', 'exec', 'replay', 'coredump'.",
"default": "auto"
},
"traceProgram": {
"type": "string",
"description": "Compiled program to be targeted. For use on 'replay' mode only",
"default": ""
},
"traceDirectory": {
"type": "string",
"description": "Directory in which the record trace is located. For use on 'replay' mode only",
"default": ""
},
"coreDumpPath": {
"type": "string",
"description": "Path to the core dump file to open. For use on 'coredump' mode only",
"default": ""
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop program after launch.",
Expand Down Expand Up @@ -644,7 +661,9 @@
"enum": [
"default",
"native",
"lldb"
"lldb",
"coredump",
"rr"
],
"description": "Backend used by delve. Only available in delve version 0.12.2 and above."
},
Expand Down

0 comments on commit 6075579

Please sign in to comment.