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

Function parsePostfixExpression

docs/tests/v2/es6/js/sanddance.js:129150–129160  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

129148
129149
129150function parsePostfixExpression() {
129151 var expr = parseLeftHandSideExpressionAllowCall();
129152
129153 if (lookahead.type === TokenPunctuator) {
129154 if (match('++') || match('--')) {
129155 throw new Error(DISABLED);
129156 }
129157 }
129158
129159 return expr;
129160} // 11.4 Unary Operators
129161
129162
129163function parseUnaryExpression() {

Callers 1

parseUnaryExpressionFunction · 0.70

Calls 2

matchFunction · 0.70

Tested by

no test coverage detected