MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / join

Function join

lib/web/tern/infer.js:1212–1219  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

1210 }
1211
1212 function join(a, b) {
1213 if (a == b || b == ANull) return a
1214 if (a == ANull) return b
1215 var joined = new AVal
1216 a.propagate(joined)
1217 b.propagate(joined)
1218 return joined
1219 }
1220
1221 function connectParams(node, scope) {
1222 for (var i = 0; i < node.params.length; i++) {

Callers 1

infer.jsFile · 0.85

Calls 1

propagateMethod · 0.80

Tested by

no test coverage detected