(scope, arrow)
| 940 | }); |
| 941 | |
| 942 | function functionScope(scope, arrow) { |
| 943 | while (scope.isBlock || scope.isCatch || (arrow === false && scope.fnType && scope.fnType.isArrowFn())) |
| 944 | scope = scope.prev |
| 945 | return scope |
| 946 | } |
| 947 | |
| 948 | |
| 949 | // RETVAL COMPUTATION HEURISTICS |
no outgoing calls
no test coverage detected