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

Method parsePostfixExpression

www/js/_hyperscript-max.js:1424–1434  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

parseElementMethod · 0.45

Tested by

no test coverage detected