Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Mitake (0.21 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    // remaining parts.
                    // E.g., coreR.string.hello
                    //   -> string.hello (drop the first segment)
                    //   test.pkg.R.string.hello
                    //   -> string.hello (take last two segments, where the size is determined by the size of qualified access minus 1)
                    val fixedQualifiedAccessSegments = qualifiedAccessSegments.drop(1)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

            is ConeUnresolvedNameError -> name
            is ConeUnresolvedReferenceError -> name
            is ConeUnresolvedSymbolError -> classId.shortClassName
            is ConeUnresolvedTypeQualifierError -> {
                // we take the first qualifier part because only the first one can be imported
                qualifiers.firstOrNull()?.name
            }
        }
    
    
    /**
     * An actual name by which this callable reference was used.
     */
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 24.2K bytes
    - Viewed (0)
Back to top