(
dependency: InstanceWrapper | undefined,
resolutionContext: ResolutionContext,
parentInquirer: InstanceWrapper | undefined,
)
| 1136 | } |
| 1137 | |
| 1138 | private getEffectiveResolutionContext( |
| 1139 | dependency: InstanceWrapper | undefined, |
| 1140 | resolutionContext: ResolutionContext, |
| 1141 | parentInquirer: InstanceWrapper | undefined, |
| 1142 | ): ResolutionContext { |
| 1143 | return this.createResolutionContext( |
| 1144 | resolutionContext.contextId, |
| 1145 | this.getEffectiveInquirer(dependency, resolutionContext, parentInquirer), |
| 1146 | this.getEffectiveInquirerId( |
| 1147 | dependency, |
| 1148 | resolutionContext, |
| 1149 | parentInquirer, |
| 1150 | ), |
| 1151 | ); |
| 1152 | } |
| 1153 | |
| 1154 | private hasDenseCtorMetadata<T>( |
| 1155 | wrapper: InstanceWrapper<T>, |
no test coverage detected