()
| 137 | |
| 138 | // Exits FunctionScope but first transforms all variables inside it |
| 139 | function leaveFunction() { |
| 140 | transformVarsToLetOrConst(); |
| 141 | scopeManager.leaveScope(); |
| 142 | } |
| 143 | |
| 144 | // This is where the actual transform happens |
| 145 | function transformVarsToLetOrConst() { |
no test coverage detected
searching dependent graphs…