Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for tree (0.15 sec)

  1. .idea/runConfigurations/Generate_SwiftIR_tree.xml

              <option value="generateTree" />
            </list>
          </option>
          <option name="vmOptions" value="" />
        </ExternalSystemSettings>
        <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <RunAsTest>false</RunAsTest>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Dec 08 10:09:09 GMT 2023
    - 1006 bytes
    - Viewed (0)
  2. .idea/runConfigurations/Generate_FIR_tree.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Generate FIR tree" type="GradleRunConfiguration" factoryName="Gradle" folderName="Generators">
        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/compiler/fir/tree" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Mar 24 09:56:13 GMT 2021
    - 827 bytes
    - Viewed (0)
  3. .idea/runConfigurations/Generate_IR_tree.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Generate IR tree" type="GradleRunConfiguration" factoryName="Gradle" folderName="Generators">
        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/compiler/ir/ir.tree" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jun 13 16:58:05 GMT 2022
    - 828 bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts

        application
    }
    
    dependencies {
        implementation(project(":generators"))
        implementation(project(":compiler:resolution.common"))
        implementation(project(":compiler:fir:tree"))
        implementation(project(":compiler:fir:tree:tree-generator"))
        implementation(project(":compiler:fir:checkers:checkers-component-generator"))
        implementation(project(":analysis:analysis-api"))
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Oct 18 18:42:40 GMT 2023
    - 1K bytes
    - Viewed (0)
  5. ReadMe.md

    ## Editing Kotlin
    
     * [Kotlin IntelliJ IDEA Plugin](https://kotlinlang.org/docs/tutorials/getting-started.html) ([source code](https://github.com/JetBrains/intellij-community/tree/master/plugins/kotlin))
     * [Kotlin Eclipse Plugin](https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
     * [Kotlin Sublime Text Package](https://github.com/vkostyukov/kotlin-sublime-package)
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 11 14:28:46 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSessionProvider.kt

            KtReadActionConfinementLifetimeToken.allowFromWriteAction.get() &&
            ApplicationManager.getApplication().isWriteAccessAllowed
        ) {
            // We must flush modifications to publish local modifications into FIR tree
            @OptIn(LLFirInternals::class)
            LLFirDeclarationModificationService.getInstance(project).flushModifications()
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 18 10:43:08 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
         * Whether an expression is used is defined by the context in which it
         * appears. E.g. a "statement" in a block is considered used if it is the
         * last expression in that block AND the block itself is used -- a
         * recursive call to `isUsed`, one level higher in the syntax tree.
         *
    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)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                if (parent.selectorExpression !== this) return true
                parent = parent.parent
            }
            return false
        }
    
        private fun KtSimpleNameExpression.isPartOfUserTypeRefQualifier(): Boolean {
            var parent = parent
            while (parent is KtUserType) {
                if (parent.referenceExpression !== this) return true
                parent = parent.parent
            }
            return false
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/build.gradle.kts

    plugins {
        kotlin("jvm")
        id("jps-compatible")
    }
    
    dependencies {
        api(project(":compiler:psi"))
        api(project(":compiler:fir:fir2ir"))
        api(project(":compiler:ir.tree"))
        api(project(":compiler:fir:resolve"))
        api(project(":compiler:fir:providers"))
        api(project(":compiler:fir:semantics"))
        api(project(":compiler:fir:checkers"))
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 05 16:42:25 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  10. .space/CODEOWNERS

    /compiler/ir/ir.actualization/ "Kotlin Compiler Core" "Kotlin Common Backend" Simon.Ogorodnik
    /compiler/ir/ir.interpreter/ "Kotlin Common Backend"
    /compiler/ir/ir.psi2ir/ "Kotlin JVM"
    /compiler/ir/ir.tree/ "Kotlin Common Backend"
    /compiler/ir/ir.tree/tree-generator "Kotlin Common Backend" Wojciech.Litewka
    /compiler/ir/ir.objcinterop/ "Kotlin Native"
    /compiler/ir/serialization.common/ "Kotlin Common Backend"
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
Back to top