| 5858 | return new _HaltCommand(bubbling, haltDefault, keepExecuting, exit); |
| 5859 | } |
| 5860 | resolve(ctx) { |
| 5861 | if (ctx.event) { |
| 5862 | if (this.bubbling) { |
| 5863 | ctx.event.stopPropagation(); |
| 5864 | } else if (this.haltDefault) { |
| 5865 | ctx.event.preventDefault(); |
| 5866 | } else { |
| 5867 | ctx.event.stopPropagation(); |
| 5868 | ctx.event.preventDefault(); |
| 5869 | } |
| 5870 | } |
| 5871 | if (this.keepExecuting) { |
| 5872 | return this.findNext(ctx); |
| 5873 | } else { |
| 5874 | return this.exit; |
| 5875 | } |
| 5876 | } |
| 5877 | }; |
| 5878 | var MakeCommand = class _MakeCommand extends Command { |
| 5879 | static keyword = "make"; |