MCPcopy Create free account
hub / github.com/microsoft/SandDance / parseGroupExpression

Function parseGroupExpression

docs/app/js/sanddance-app.js:144165–144170  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

144163 return finishObjectExpression(properties);
144164} // 11.1.6 The Grouping Operator
144165function parseGroupExpression() {
144166 expect("(");
144167 const expr = parseExpression();
144168 expect(")");
144169 return expr;
144170} // 11.1 Primary Expressions
144171const legalKeywords = {
144172 "if": 1
144173};

Callers 1

parsePrimaryExpressionFunction · 0.70

Calls 2

expectFunction · 0.70
parseExpressionFunction · 0.70

Tested by

no test coverage detected