Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Streamed (0.22 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

        return sessionProvider.analyze(useSiteKtModule, action)
    }
    
    /**
     * Executes the given [action] in a [KaSession] context.
     * Depending on the passed [resolutionMode], declarations inside a file copy will be treated in a specific way.
     *
     * Note that the [useSiteKtElement] must be inside a dangling file copy.
     * Specifically, [PsiFile.getOriginalFile] must point to the copy source.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. .idea/dictionaries/4u7.xml

          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
          <w>streamex</w>
          <w>unpresent</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
  4. 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) {
                is KtCallableReferenceExpression -> return resolveCall(psi.callableReference)
    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