Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasFurtherTokens (0.28 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

        while (hasFurtherTokens() && !packageDefinitionFound() && !tooLateForPackageStatement()) {
            advance()
        }
    
        if (packageDefinitionFound()) {
            advance()
            skipWhiteSpaceAndComments()
            return parseQualifiedName()
        }
    
        return null
    }
    
    
    private
    fun KotlinLexer.hasFurtherTokens() = tokenType != null
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top