Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 273 for tree (0.17 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtCallableReturnTypeFilter.kt

        public object ALWAYS : KaCallableReturnTypeFilter {
            override fun shouldRenderReturnType(analysisSession: KaSession, type: KaType, symbol: KaCallableSymbol): Boolean {
                return true
            }
    
        }
    
        public object NO_UNIT_FOR_FUNCTIONS : KaCallableReturnTypeFilter {
            override fun shouldRenderReturnType(analysisSession: KaSession, type: KaType, symbol: KaCallableSymbol): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/exitPointEquivalence/breakAndReturn.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = null
      hasEscapingJumps = false
      hasJumps = true
      hasMultipleJumpKinds = true
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return,
        break
      ]
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 300 bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractFileImportingScopeContextTest.kt

                val scopeContextStringRepresentation = render(ktScopeContext, renderDefaultImportingScope)
                val scopeContextStringRepresentationPretty = render(ktScopeContext, renderDefaultImportingScope, printPretty = true)
    
                testServices.assertions.assertEqualsToTestDataFileSibling(scopeContextStringRepresentation)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/superTypes/KtSuperTypesFilter.kt

                        KaClassKind.INTERFACE -> !superType.isAny
                        else -> true
                    }
                }
            }
        }
    
        public object ALL : KaSuperTypesFilter {
            override fun filter(analysisSession: KaSession, superType: KaType, symbol: KaClassOrObjectSymbol): Boolean {
                return true
            }
        }
    
        public object NONE : KaSuperTypesFilter {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/unconditionalJumps/nonLocalReturn.txt

      defaultExpressionInfo = DefaultExpressionInfo:
        expression = numbers.forEach {
                if (it == 3) {
                    return
                }
            }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return
      ]
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 439 bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         * e.g., according to the annotation on the containing declarations.
         * - `true` means they should be suppressed.
         * - `false` means they should appear.
         * - `null` is no-op by default, i.e., their suppression/appearance is determined by type annotations.
         *
         * @param preserveAnnotations if **true** the result [PsiType] will have converted annotations from the original [type][this]
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

     * rather than formatting first by calling <code>toString()</code>.
     *
     * @since 4.0.0
     */
    @Experimental
    @Provider
    public interface Log {
        /**
         * {@return true if the <b>debug</b> error level is enabled}.
         */
        boolean isDebugEnabled();
    
        /**
         * Sends a message to the user in the <b>debug</b> error level.
         *
         * @param content the message to log
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/typeProvider/AbstractAnalysisApiGetSuperTypesTest.kt

                    val approximatedDirectSuperTypes = expectedType.getDirectSuperTypes(shouldApproximate = true)
                    val allSuperTypes = expectedType.getAllSuperTypes()
                    val approximatedAllSuperTypes = expectedType.getAllSuperTypes(shouldApproximate = true)
    
                    buildString {
                        fun List<KaType>.print(name: String) {
                            appendLine(name)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceResolveMixIn.kt

         *    }
         * }
         * ```
         *
         * For the case provided, inside the call `A.foo()`,
         * the `A` is an implicit reference to the companion object, so `isImplicitReferenceToCompanion` returns `true`
         *
         * @return `true` if the reference is an implicit reference to a companion object, `false` otherwise.
         */
        public fun KtReference.isImplicitReferenceToCompanion(): Boolean = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/symbols/FirIdeNormalAnalysisScriptSourceModuleSingleSymbolByPsiTestGenerated.java

      public void testAllFilesPresentInSingleSymbolByPsi() {
        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/symbols/singleSymbolByPsi"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/symbols/singleSymbolByPsi/contracts")
      @TestDataPath("$PROJECT_ROOT")
      public class Contracts {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top