| 5515 | return new _HaltCommand(bubbling, haltDefault, keepExecuting, exit); |
| 5516 | } |
| 5517 | resolve(ctx) { |
| 5518 | if (ctx.event) { |
| 5519 | if (this.bubbling) { |
| 5520 | ctx.event.stopPropagation(); |
| 5521 | } else if (this.haltDefault) { |
| 5522 | ctx.event.preventDefault(); |
| 5523 | } else { |
| 5524 | ctx.event.stopPropagation(); |
| 5525 | ctx.event.preventDefault(); |
| 5526 | } |
| 5527 | } |
| 5528 | if (this.keepExecuting) { |
| 5529 | return this.findNext(ctx); |
| 5530 | } else { |
| 5531 | return this.exit; |
| 5532 | } |
| 5533 | } |
| 5534 | }; |
| 5535 | var MakeCommand = class _MakeCommand extends Command { |
| 5536 | static keyword = "make"; |