(node)
| 82794 | return false; |
| 82795 | } |
| 82796 | function checkDoStatement(node) { |
| 82797 | // Grammar checking |
| 82798 | checkGrammarStatementInAmbientContext(node); |
| 82799 | checkSourceElement(node.statement); |
| 82800 | checkTruthinessExpression(node.expression); |
| 82801 | } |
| 82802 | function checkWhileStatement(node) { |
| 82803 | // Grammar checking |
| 82804 | checkGrammarStatementInAmbientContext(node); |
no test coverage detected