Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for justru (1.21 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                        // This could happen if, e.g., src/my/pkg/MyTest.java has package `test.pkg`.
                        // It is just best practice, not enforced by language spec.
                        // So, here, we just stop iterating upward the folder structure.
                        break
                    }
                }
                javaDir?.let { result += it }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

         *
         * In cases when the name reference references a function (a REAL function, not a functional type variable), it does not
         * make sense to provide any type for it.
         *
         * ---
         *
         * Why not just always provide null for name references? In such case, the following case would be a problem:
         *
         * ```kt
         * fun usage(action: String.(Int) -> String) {
         *   "hello".<expr>action</expr>(10)
         * }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

         * a KDoc reference should be considered as legal and resolved, and false otherwise.
         *
         * This is **not** an actual type check, it is just an opinionated approximation.
         * The main guideline was K1 KDoc resolve.
         *
         * This check might change in the future, as Dokka team advances with KDoc rules.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                        val deepestQualifier = qualifiedAccess.selectorExpression?.referenceExpression() as? KtNameReferenceExpression
    
                        // If we're looking for the deepest qualifier, then just resolve to the companion
                        if (expression === deepestQualifier) return referencedSymbolsByFir
    
                        if (fir.resolvedToCompanionObject) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

            return if (origin == FirDeclarationOrigin.ImportedFromObjectOrStatic) {
                val originalSymbol = fir.importedFromObjectOrStaticData!!.original.symbol
                // The symbol has to be the same type as it is just a copy with possibly different `CallableId`
                builder(originalSymbol as T)
            } else {
                null
            }
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                unwrappedPsi !is KtArrayAccessExpression
            ) {
                // Specially handle property assignment because FE1.0 resolves LHS of assignment to just the property, which would then be
                // treated as a property read.
                return resolveCall(parentBinaryExpression)
            }
    
            when (psi) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top