(node, scope, out, name)
| 1612 | inferExprVisitor.ArrowFunctionExpression = inferExprVisitor.FunctionExpression |
| 1613 | |
| 1614 | function infer(node, scope, out, name) { |
| 1615 | var handler = inferExprVisitor[node.type]; |
| 1616 | return handler ? handler(node, scope, out, name) : ANull; |
| 1617 | } |
| 1618 | |
| 1619 | function loopPattern(init) { |
| 1620 | return init.type == "VariableDeclaration" ? init.declarations[0].id : init |
no test coverage detected