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

Function parseExpression

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

Source from the content-addressed store, hash-verified

144375 return expr;
144376} // 11.14 Comma Operator
144377function parseExpression() {
144378 const expr = parseConditionalExpression();
144379 if (match(",")) throw new Error(DISABLED); // no sequence expressions
144380 return expr;
144381}
144382function parser(code) {
144383 source = code;
144384 index = 0;

Callers 3

parseGroupExpressionFunction · 0.70
parseComputedMemberFunction · 0.70
parserFunction · 0.70

Calls 2

matchFunction · 0.70

Tested by

no test coverage detected