MCPcopy Create free account
hub / github.com/bigskysoftware/_hyperscript / parseOperand

Method parseOperand

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

Source from the content-addressed store, hash-verified

4876 static grammarName = "collectionExpression";
4877 static KEYWORDS = ["where", "sorted", "mapped", "split", "joined"];
4878 static parseOperand(parser) {
4879 var count = parser.pushFollows(...this.KEYWORDS);
4880 try {
4881 return parser.requireElement("expression");
4882 } finally {
4883 parser.popFollows(count);
4884 }
4885 }
4886 static parse(parser) {
4887 var root = parser.parseElement("unaryExpression");
4888 var changed = true;

Callers 2

parseMethod · 0.45
parseMethod · 0.45

Calls 3

pushFollowsMethod · 0.45
requireElementMethod · 0.45
popFollowsMethod · 0.45

Tested by

no test coverage detected