(type, target)
| 481 | } |
| 482 | |
| 483 | function propagateWithWeight(type, target) { |
| 484 | var weight = infer.cx().parent.mod.docComment.weight; |
| 485 | type.type.propagate(target, weight || (type.madeUp ? WG_MADEUP : undefined)); |
| 486 | } |
| 487 | |
| 488 | function isFunExpr(node) { return node.type == "FunctionExpression" || node.type == "ArrowFunctionExpression" } |
| 489 |
no outgoing calls
no test coverage detected
searching dependent graphs…