Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for methods (0.2 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                            }
                        }
                        methods.singleOrNull { it.name.endsWith(JvmAbi.ANNOTATED_PROPERTY_METHOD_NAME_SUFFIX) }?.let {
                            bindings.put(
                                FirJvmSerializerExtension.SYNTHETIC_METHOD_FOR_FIR_VARIABLE,
                                fir,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Mar 26 09:19:07 GMT 2024
    - 10K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

         * last expression in that block AND the block itself is used -- a
         * recursive call to `isUsed`, one level higher in the syntax tree.
         *
         * The methods are _conservative_, erring on the side of answering `true`.
         */
        private fun isUsed(psiElement: PsiElement): Boolean {
            return when (psiElement) {
                /**
                 * DECLARATIONS
                 */
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  3. .idea/runConfigurations/run_IR_test_in_node_js.xml

        <command value="run" />
        <scripts>
          <script value="runIrTestInNode" />
        </scripts>
        <arguments value="$FilePath$" />
        <node-interpreter value="project" />
        <envs />
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Oct 12 10:57:03 GMT 2018
    - 463 bytes
    - Viewed (0)
  4. .idea/runConfigurations/Test__Kotlin_Gradle_Plugin___functionalTest___unit.xml

        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <RunAsTest>true</RunAsTest>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Jun 05 14:25:01 GMT 2023
    - 1K bytes
    - Viewed (0)
  5. .idea/runConfigurations/Generate_SwiftIR_tree.xml

        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <RunAsTest>false</RunAsTest>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Dec 08 10:09:09 GMT 2023
    - 1006 bytes
    - Viewed (0)
  6. .idea/runConfigurations/Analysis_API_FE1_0_Tests.xml

        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <RunAsTest>true</RunAsTest>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Jan 03 13:39:42 GMT 2024
    - 1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolDeclarationOverridesProvider.kt

            return subClassDescriptor.getSuperClassOrAny() == superClassDescriptor
        }
    
        override fun getIntersectionOverriddenSymbols(symbol: KtCallableSymbol): Collection<KtCallableSymbol> {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Mar 13 16:31:41 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

                Errors.COMPONENT_FUNCTION_AMBIGUITY,
                Errors.DELEGATE_SPECIAL_FUNCTION_AMBIGUITY,
                Errors.DELEGATE_SPECIAL_FUNCTION_NONE_APPLICABLE,
                Errors.DELEGATE_PD_METHOD_NONE_APPLICABLE,
            )
    
            private val DiagnosticFactoryForDeprecation<*, *, *>.factories: Array<DiagnosticFactoryWithPsiElement<*, *>>
                get() = arrayOf(warningFactory, errorFactory)
        }
    
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Apr 29 12:48:54 GMT 2024
    - 34.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

        val substitutor = AnonymousTypesSubstitutor(session)
        val visibilityForApproximation = useSitePosition.visibilityForApproximation
        // TODO: See if the given [useSitePosition] is an `inline` method
        val isInlineFunction = false
        var currentType = this
        do {
            val oldType = currentType
            currentType = currentType.fullyExpandedType(session)
            if (currentType is ConeDynamicType) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 12 13:29:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10KlibSourceFileNameProvider.kt

        override val analysisSession: KtAnalysisSession,
    ) : KtKlibSourceFileNameProvider() {
        override fun getKlibSourceFileName(declaration: KtDeclarationSymbol): String? {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Mar 18 10:13:57 GMT 2024
    - 893 bytes
    - Viewed (0)
Back to top