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

Method parsePostfixExpression

www/js/_hyperscript.js:1425–1435  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

1423 return root;
1424 }
1425 parsePostfixExpression(parser) {
1426 var root = parser.parseElement("negativeNumber");
1427 for (var i = 0; i < this.#postfixExpressions.length; i++) {
1428 var postfixType = this.#postfixExpressions[i];
1429 var result = this.parseElement(postfixType, parser, root);
1430 if (result) {
1431 return result;
1432 }
1433 }
1434 return root;
1435 }
1436 parseUnaryExpression(parser) {
1437 parser.matchToken("the");
1438 var result = parser.parseAnyOf(this.#unaryExpressions);

Callers

nothing calls this directly

Calls 1

parseElementMethod · 0.45

Tested by

no test coverage detected