MCPcopy Index your code
hub / github.com/bigskysoftware/_hyperscript / resolve

Method resolve

tools/common/_hyperscript.iife.js:5517–5533  ·  view source on GitHub ↗
(ctx)

Source from the content-addressed store, hash-verified

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";

Callers

nothing calls this directly

Calls 1

findNextMethod · 0.45

Tested by

no test coverage detected