(node)
| 46671 | } |
| 46672 | } |
| 46673 | function checkStrictModeNumericLiteral(node) { |
| 46674 | if (languageVersion < 1 /* ScriptTarget.ES5 */ && inStrictMode && node.numericLiteralFlags & 32 /* TokenFlags.Octal */) { |
| 46675 | file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Octal_literals_are_not_allowed_in_strict_mode)); |
| 46676 | } |
| 46677 | } |
| 46678 | function checkStrictModePostfixUnaryExpression(node) { |
| 46679 | // Grammar checking |
| 46680 | // The identifier eval or arguments may not appear as the LeftHandSideExpression of an |
no test coverage detected