(node)
| 86 | |
| 87 | // True when dealing with any kind of while-loop |
| 88 | function isAnyWhileStatement(node) { |
| 89 | return node.type === 'WhileStatement' || |
| 90 | node.type === 'DoWhileStatement'; |
| 91 | } |
| 92 | |
| 93 | // Program node works almost like a function: |
| 94 | // it hoists all variables which can be transformed to block-scoped let/const. |
no outgoing calls
no test coverage detected
searching dependent graphs…