MCPcopy Index your code
hub / github.com/nodejs/node / checkStrictModePostfixUnaryExpression

Function checkStrictModePostfixUnaryExpression

test/fixtures/snapshot/typescript.js:46678–46686  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

46676 }
46677 }
46678 function checkStrictModePostfixUnaryExpression(node) {
46679 // Grammar checking
46680 // The identifier eval or arguments may not appear as the LeftHandSideExpression of an
46681 // Assignment operator(11.13) or of a PostfixExpression(11.3) or as the UnaryExpression
46682 // operated upon by a Prefix Increment(11.4.4) or a Prefix Decrement(11.4.5) operator.
46683 if (inStrictMode) {
46684 checkStrictModeEvalOrArguments(node, node.operand);
46685 }
46686 }
46687 function checkStrictModePrefixUnaryExpression(node) {
46688 // Grammar checking
46689 if (inStrictMode) {

Callers 1

bindWorkerFunction · 0.85

Calls 1

Tested by

no test coverage detected