(node)
| 46693 | } |
| 46694 | } |
| 46695 | function checkStrictModeWithStatement(node) { |
| 46696 | // Grammar checking for withStatement |
| 46697 | if (inStrictMode) { |
| 46698 | errorOnFirstToken(node, ts.Diagnostics.with_statements_are_not_allowed_in_strict_mode); |
| 46699 | } |
| 46700 | } |
| 46701 | function checkStrictModeLabeledStatement(node) { |
| 46702 | // Grammar checking for labeledStatement |
| 46703 | if (inStrictMode && ts.getEmitScriptTarget(options) >= 2 /* ScriptTarget.ES2015 */) { |
no test coverage detected