feat(debug): create debugger (#1174)

* Updates

* Updates

* Updates

* Checkpoint

* Checkpoint

* Checkpoitn

* Var improvements

* Fixes

* Execution status

* UI improvements

* Ui updates

* Fix

* Fix scoping

* Fix workflow vars

* Fix env vars

* Remove number styling

* Variable highlighting

* Updates

* Update

* Fix resume

* Stuff

* Breakpoint ui

* Ui

* Ui updates

* Loops and parallels

* HIde env vars

* Checkpoint

* Stuff

* Panel toggle

* Lint
This commit is contained in:
Siddharth Ganesan
2025-08-28 18:19:20 -07:00
committed by GitHub
parent bb5f40a027
commit 7c73f5ffe0
9 changed files with 2322 additions and 71 deletions

View File

@@ -746,7 +746,7 @@ export class Executor {
Object.entries(this.initialBlockStates).forEach(([blockId, output]) => {
context.blockStates.set(blockId, {
output: output as NormalizedBlockOutput,
executed: true,
executed: false,
executionTime: 0,
})
})