(node, scope, out, name)
| 1649 | inferExprVisitor.ArrowFunctionExpression = inferExprVisitor.FunctionExpression; |
| 1650 | |
| 1651 | function infer(node, scope, out, name) { |
| 1652 | var handler = inferExprVisitor[node.type]; |
| 1653 | return handler ? handler(node, scope, out, name) : ANull; |
| 1654 | } |
| 1655 | |
| 1656 | function loopPattern(init) { |
| 1657 | return init.type == "VariableDeclaration" ? init.declarations[0].id : init; |
no outgoing calls
no test coverage detected
searching dependent graphs…