(node)
| 82673 | ts.forEach(node.declarationList.declarations, checkSourceElement); |
| 82674 | } |
| 82675 | function checkExpressionStatement(node) { |
| 82676 | // Grammar checking |
| 82677 | checkGrammarStatementInAmbientContext(node); |
| 82678 | checkExpression(node.expression); |
| 82679 | } |
| 82680 | function checkIfStatement(node) { |
| 82681 | // Grammar checking |
| 82682 | checkGrammarStatementInAmbientContext(node); |
no test coverage detected