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

Method parsePostfixExpression

www/js/_hyperscript.esm.js:1423–1433  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

parseElementMethod · 0.45

Tested by

no test coverage detected