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

Function parsePostfixExpression

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

Source from the content-addressed store, hash-verified

144242 return expr;
144243} // 11.3 Postfix Expressions
144244function parsePostfixExpression() {
144245 const expr = parseLeftHandSideExpressionAllowCall();
144246 if (lookahead.type === TokenPunctuator) {
144247 if (match("++") || match("--")) throw new Error(DISABLED);
144248 }
144249 return expr;
144250} // 11.4 Unary Operators
144251function parseUnaryExpression() {
144252 var token, expr;
144253 if (lookahead.type !== TokenPunctuator && lookahead.type !== TokenKeyword) expr = parsePostfixExpression();

Callers 1

parseUnaryExpressionFunction · 0.70

Calls 2

matchFunction · 0.70

Tested by

no test coverage detected