Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for substituteProjectionsForParameters (0.2 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeCreator.kt

                        is KtTypeArgumentWithVariance -> TypeProjectionImpl(arg.variance, (arg.type as KtFe10Type).fe10Type)
                    }
                }
    
                TypeUtils.substituteProjectionsForParameters(descriptor, projections)
            } else {
                descriptor.defaultType
            }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Jan 10 12:54:17 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        }
    
        // Generic non-array class literals are not supported in K1
        val typeArguments = descriptor.typeConstructor.parameters.map { StarProjectionImpl(it) }
    
        var type: KotlinType = TypeUtils.substituteProjectionsForParameters(descriptor, typeArguments)
        var classId = value.classId
    
        if (value.arrayDimensions > 0) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
Back to top