MCPcopy Create free account
hub / github.com/bigskysoftware/_hyperscript / resolve

Method resolve

www/js/_hyperscript.js:5860–5876  ·  view source on GitHub ↗
(ctx)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

findNextMethod · 0.45

Tested by

no test coverage detected