You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
overrideval arguments:List<AstType>
get() = type.arguments.map {
val argumentType = checkNotNull(it.type) {
"Couldn't resolve type for $it with variance ${it.variance} from parent type $type"
}
KSAstType(resolver, argumentType)
}
This may crash, if the type is null and this happens in some cases for star projections as highlighted in #411. This exception is caught only when checking for wrongly placed qualifiers for now.
The text was updated successfully, but these errors were encountered:
Following code exists as is today in
KSAstType
:This may crash, if the
type
is null and this happens in some cases for star projections as highlighted in #411. This exception is caught only when checking for wrongly placed qualifiers for now.The text was updated successfully, but these errors were encountered: