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

Method parseLeaf

tools/common/_hyperscript.iife.js:1397–1403  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

1395 return new EmptyCommandListCommand();
1396 }
1397 parseLeaf(parser) {
1398 var result = parser.parseAnyOf(this.#leafExpressions);
1399 if (result == null) {
1400 return parser.parseElement("symbol");
1401 }
1402 return result;
1403 }
1404 parseIndirectExpression(parser, root) {
1405 for (var i = 0; i < this.#indirectExpressions.length; i++) {
1406 var indirect = this.#indirectExpressions[i];

Callers

nothing calls this directly

Calls 2

parseAnyOfMethod · 0.45
parseElementMethod · 0.45

Tested by

no test coverage detected