Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newTypeParameterTypeOf (0.27 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/KotlinType.kt

    import org.gradle.kotlin.dsl.support.bytecode.newTypeParameterTypeOf
    
    
    internal
    object KotlinType {
    
        val string: KmType = newClassTypeOf("kotlin/String")
    
        val unit: KmType = newClassTypeOf("kotlin/Unit")
    
        val any: KmType = newClassTypeOf("kotlin/Any")
    
        val typeParameter: KmType = newTypeParameterTypeOf(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    ): KmType {
        val kmType = KmType(0)
        kmType.classifier = KmClassifier.Class(name)
        kmType.arguments.addAll(arguments)
        return kmType
    }
    
    
    internal
    fun newTypeParameterTypeOf(id: Int): KmType {
        val kmType = KmType(0)
        kmType.classifier = KmClassifier.TypeParameter(id)
        return kmType
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top