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

Method resolveOutputs

src/runtime/join.ts:623–633  ·  view source on GitHub ↗
(prefix)

Source from the content-addressed store, hash-verified

621 }
622
623 resolveOutputs(prefix) {
624 this.hasResolvedOutputs = false;
625 let resolved = resolve(this.outputs, prefix, this.resolvedOutputs);
626 for(let item of resolved) {
627 if(item !== undefined) {
628 this.hasResolvedOutputs = true;
629 break;
630 }
631 }
632 return resolved;
633 }
634
635 checkOutputs(resolved, row) {
636 if(!this.hasResolvedOutputs) return true;

Callers 1

getProposalMethod · 0.95

Calls 1

resolveFunction · 0.70

Tested by

no test coverage detected