MCPcopy
hub / github.com/witheve/Eve / fullyResolved

Function fullyResolved

src/runtime/join.ts:102–108  ·  view source on GitHub ↗
(toCheck, prefix)

Source from the content-addressed store, hash-verified

100// Check if this entire array of registers has values (all variables have been
101// filled in by the prefix.)
102function fullyResolved(toCheck, prefix) {
103 for(let register of toCheck) {
104 if(register === undefined) continue;
105 if(toValue(register, prefix) === undefined) return false;
106 }
107 return true;
108}
109
110//---------------------------------------------------------------------
111// Scan

Callers 5

proposeFunction · 0.85
acceptFunction · 0.85
acceptMethod · 0.85
proposeMethod · 0.85
acceptMethod · 0.85

Calls 1

toValueFunction · 0.85

Tested by

no test coverage detected