(node)
| 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) { |
no test coverage detected