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

Method parseIndirectExpression

www/js/_hyperscript.esm.js:1412–1422  ·  view source on GitHub ↗
(parser, root)

Source from the content-addressed store, hash-verified

1410 return result;
1411 }
1412 parseIndirectExpression(parser, root) {
1413 for (var i = 0; i < this.#indirectExpressions.length; i++) {
1414 var indirect = this.#indirectExpressions[i];
1415 root.endToken = parser.lastMatch();
1416 var result = this.parseElement(indirect, parser, root);
1417 if (result) {
1418 return result;
1419 }
1420 }
1421 return root;
1422 }
1423 parsePostfixExpression(parser) {
1424 var root = parser.parseElement("negativeNumber");
1425 for (var i = 0; i < this.#postfixExpressions.length; i++) {

Callers

nothing calls this directly

Calls 2

lastMatchMethod · 0.45
parseElementMethod · 0.45

Tested by

no test coverage detected