File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
utbot-framework/src/main/kotlin/org/utbot/engine Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -2347,7 +2347,9 @@ class Traverser(
2347
2347
// better than engine.
2348
2348
val types = instanceOfConstraint?.typeStorage?.possibleConcreteTypes ? : instance.possibleConcreteTypes
2349
2349
2350
- val allPossibleConcreteTypes = typeRegistry.findInheritorsIncludingTypes(instance.type) { setOf (instance.type) }
2350
+ val allPossibleConcreteTypes = typeResolver
2351
+ .constructTypeStorage(instance.type, useConcreteType = false )
2352
+ .possibleConcreteTypes
2351
2353
2352
2354
val methodInvocationTargets = findLibraryTargets(instance.type, methodSubSignature)?.takeIf {
2353
2355
// we have no specified types, so we can take only library targets (if present) for optimization purposes
You can’t perform that action at this time.
0 commit comments