(
item: InstanceWrapper,
contextId: ContextId,
inquirer?: InstanceWrapper,
parentInquirer?: InstanceWrapper,
)
| 1183 | } |
| 1184 | |
| 1185 | private resolveScopedComponentHost( |
| 1186 | item: InstanceWrapper, |
| 1187 | contextId: ContextId, |
| 1188 | inquirer?: InstanceWrapper, |
| 1189 | parentInquirer?: InstanceWrapper, |
| 1190 | ) { |
| 1191 | return this.isInquirerRequest(item, parentInquirer) |
| 1192 | ? parentInquirer |
| 1193 | : this.resolveComponentHost( |
| 1194 | item.host!, |
| 1195 | item, |
| 1196 | this.getEffectiveResolutionContext( |
| 1197 | item, |
| 1198 | this.createResolutionContext(contextId, inquirer), |
| 1199 | parentInquirer, |
| 1200 | ), |
| 1201 | ); |
| 1202 | } |
| 1203 | |
| 1204 | private isInquirerRequest( |
| 1205 | item: InstanceWrapper, |
no test coverage detected