Add stepping and breakpoints to debugger

This commit is contained in:
Nilay Majorwar
2021-12-15 22:08:30 +05:30
parent 38247f03c8
commit 7d9fb457ff
6 changed files with 58 additions and 1 deletions

View File

@@ -22,6 +22,10 @@ export type WorkerRequestData =
type: "Execute";
params: { interval?: number };
}
| {
type: "ExecuteStep";
params?: null;
}
| {
type: "Pause";
params?: null;