(multiIndex: MultiIndex, prefix, solvingFor, force?)
| 704 | } |
| 705 | |
| 706 | accept(multiIndex: MultiIndex, prefix, solvingFor, force?) { |
| 707 | if(!force && !this.internalVars[solvingFor.id] || !fullyResolved(this.args, prefix)) return true; |
| 708 | for(let branch of this.branches) { |
| 709 | for(let stratum of branch.strata) { |
| 710 | let result = preJoinAccept(multiIndex, stratum.scans, stratum.vars, prefix); |
| 711 | if(result.accepted) { |
| 712 | return true; |
| 713 | } |
| 714 | } |
| 715 | } |
| 716 | return false; |
| 717 | } |
| 718 | |
| 719 | } |
| 720 |
nothing calls this directly
no test coverage detected