(node, { state, next })
| 1160 | }, |
| 1161 | |
| 1162 | ArrowFunctionExpression(node, { state, next }) { |
| 1163 | const scope = state.scope.child(true); |
| 1164 | scopes.set(node, scope); |
| 1165 | |
| 1166 | add_params(scope, node.params); |
| 1167 | next({ scope }); |
| 1168 | }, |
| 1169 | |
| 1170 | ForStatement: create_block_scope, |
| 1171 | ForInStatement: create_block_scope, |
nothing calls this directly
no test coverage detected