Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for build_list (0.1 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                }
            }
        }
    
        class NestedType(val root: PossiblyInnerType, val nested: List<PossiblyInnerType>) {
            val allInnerTypes: List<PossiblyInnerType>
                get() = buildList {
                    add(root)
                    addAll(nested)
                }
        }
    
        override val typeContext = KaFe10TypeSystemCommonBackendContextForTypeMapping(resolveSession)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                        }
                    }
                }
            }
        }
    
        private
        fun formatFailuresInLanguageTree(failures: List<SingleFailureResult>): List<String> = buildList {
            failures.forEach { failure ->
                when (failure) {
                    is UnsupportedConstruct -> add(formatUnsupportedConstruct(failure))
                    is ParsingError -> add(formatParsingError(failure))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompletionCandidateChecker.kt

                ?: errorWithAttachment("Cannot find enclosing declaration for ${nameExpression::class}") {
                    withPsiEntry("fakeNameExpression", nameExpression)
                }
    
            return buildList {
                addAll(towerDataContext.implicitReceiverStack)
                for (towerDataElement in towerDataContext.towerDataElements) {
                    addAll(towerDataElement.contextReceiverGroup.orEmpty())
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            } finally {
                state.destroy()
            }
        }
    
        private fun computeErrors(diagnostics: Diagnostics, allowedErrorFilter: (KaDiagnostic) -> Boolean): List<KaDiagnostic> {
            return buildList {
                for (diagnostic in diagnostics.all()) {
                    if (diagnostic.severity == Severity.ERROR) {
                        val ktDiagnostic = KaFe10Diagnostic(diagnostic, token)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top