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

Method parseUnaryExpression

src/core/kernel.js:128–133  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

126 }
127
128 parseUnaryExpression(parser) {
129 parser.matchToken("the"); // optional "the"
130 var result = parser.parseAnyOf(this.#unaryExpressions);
131 if (result) return this.parseElement("indirectExpression", parser, result);
132 return parser.parseElement("postfixExpression");
133 }
134
135 parseExpression(parser) {
136 parser.matchToken("the"); // optional "the"

Callers

nothing calls this directly

Calls 3

parseElementMethod · 0.95
matchTokenMethod · 0.45
parseAnyOfMethod · 0.45

Tested by

no test coverage detected