Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isInScope (0.15 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaBuildingUtils.kt

        }
    
    
    internal
    fun checkInScope(
        type: KType,
        typeScope: DataSchemaBuilder.PreIndex
    ) {
        if (type.classifier?.isInScope(typeScope) != true) {
            error("type $type used in a function is not in schema scope")
        }
    }
    
    
    private
    fun KClassifier.isInScope(typeScope: DataSchemaBuilder.PreIndex) =
        isBuiltInType || this is KClass<*> && typeScope.hasType(this)
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top