Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove our types from type storages
  • Loading branch information
CaelmBleidd committed Oct 27, 2022
commit 2a586f7923e97800c44f00952a6e8e723dcba552
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@ class TypeResolver(private val typeRegistry: TypeRegistry, private val hierarchy
return false
}

if (baseType.sootClass.packageName.startsWith("org.utbot")) {
return true
}

if (baseType.sootClass.packageName.startsWith("soot")) {
return true
}

val baseSootClass = baseType.sootClass

if (numDimensions == 0 && baseSootClass.isInappropriate) {
Expand Down