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

Method parseIndirectExpression

tools/common/_hyperscript.iife.js:1404–1414  ·  view source on GitHub ↗
(parser, root)

Source from the content-addressed store, hash-verified

1402 return result;
1403 }
1404 parseIndirectExpression(parser, root) {
1405 for (var i = 0; i < this.#indirectExpressions.length; i++) {
1406 var indirect = this.#indirectExpressions[i];
1407 root.endToken = parser.lastMatch();
1408 var result = this.parseElement(indirect, parser, root);
1409 if (result) {
1410 return result;
1411 }
1412 }
1413 return root;
1414 }
1415 parsePostfixExpression(parser) {
1416 var root = parser.parseElement("negativeNumber");
1417 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