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

Method parse

tools/common/_hyperscript.iife.js:1044–1049  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

1042 return new _NamedArgumentList(fields, valueExpressions);
1043 }
1044 static parse(parser) {
1045 if (!parser.matchOpToken("(")) return;
1046 var elt = _NamedArgumentList.parseNaked(parser);
1047 parser.requireOpToken(")");
1048 return elt;
1049 }
1050 resolve(context, { values }) {
1051 var returnVal = { _namedArgList_: true };
1052 for (var i = 0; i < values.length; i++) {

Callers

nothing calls this directly

Calls 3

matchOpTokenMethod · 0.45
parseNakedMethod · 0.45
requireOpTokenMethod · 0.45

Tested by

no test coverage detected