Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Dynamic (0.82 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

    }
    
    public typealias KtIntersectionType = KaIntersectionType
    
    /**
     * A special dynamic type, which is used to support interoperability with dynamically typed libraries, platforms or languages.
     *
     * Although this can be viewed as a flexible type (kotlin.Nothing..kotlin.Any?), a platform may assign special meaning to the
     * values of dynamic type, and handle differently from the regular flexible type.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

        <extensionPoint
            qualifiedName="org.jetbrains.kotlin.kaResolveExtensionProvider"
            interface="org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtensionProvider"
            area="IDEA_PROJECT"
            dynamic="true"
        />
      </extensionPoints>
    
      <extensions defaultExtensionNs="com.intellij">
        <projectService serviceImplementation="org.jetbrains.kotlin.resolve.jvm.KotlinJavaPsiFacade"/>
    
        <projectService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         *
         * @see org.jetbrains.kotlin.fir.declarations.FirDeclarationOrigin.Plugin
         */
        PLUGIN,
    
    
        /**
         * Declaration from dynamic Kotlin/JS scope.
         *
         * See: [Dynamic type Kotlin documentation](https://kotlinlang.org/docs/dynamic-type.html)
         */
        JS_DYNAMIC,
    
        /**
         * Kotlin/Native forward declaration.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         *
         * [STRICT] is the default policy for the following reasons:
         *
         *  1. In general, considering an error type equal to all other types is unintuitive. It essentially turns error types into dynamic `Any`
         *     or `Nothing` types (depending on the typing position). This can produce a lot of typing relationships which do not make any sense,
         *     such as `Int = UnresolvedClass`.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top