(node)
| 46685 | } |
| 46686 | } |
| 46687 | function checkStrictModePrefixUnaryExpression(node) { |
| 46688 | // Grammar checking |
| 46689 | if (inStrictMode) { |
| 46690 | if (node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) { |
| 46691 | checkStrictModeEvalOrArguments(node, node.operand); |
| 46692 | } |
| 46693 | } |
| 46694 | } |
| 46695 | function checkStrictModeWithStatement(node) { |
| 46696 | // Grammar checking for withStatement |
| 46697 | if (inStrictMode) { |
no test coverage detected