(parser)
| 53 | var BreakpointCommand = class _BreakpointCommand extends Command { |
| 54 | static keyword = "breakpoint"; |
| 55 | static parse(parser) { |
| 56 | if (!parser.matchToken("breakpoint")) return; |
| 57 | return new _BreakpointCommand(); |
| 58 | } |
| 59 | resolve(ctx) { |
| 60 | var hdb; |
| 61 | globalThis.hdb = hdb = new HDB(ctx, ctx.meta.runtime, this); |
nothing calls this directly
no test coverage detected