Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for Content (0.58 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

    ) : KtStaticProjectStructureProvider() {
        private val ktNotUnderContentRootModuleWithoutPsiFile by lazy {
            KtNotUnderContentRootModuleImpl(
                name = "unnamed-outside-content-root",
                moduleDescription = "Standalone-not-under-content-root-module-without-psi-file",
                project = project,
            )
        }
    
        private val builtinsModule: KtBuiltinsModule by lazy {
            @OptIn(LLFirInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // MODULE: lib
    // MODULE_KIND: LibraryBinary
    // FILE: p3/foo.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    
    fun setContent(content: @MyComposable () -> Unit): Int {
        content()
        return 3
    }
    
    // MODULE: main(lib)
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.setContent
    
    fun test(): Int {
        return setContent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 542 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

     *            // On the other hand, a `KaCallableSignature` carries instantiated type information `(Int) -> String`.
     * }
     * ```
     *
     * Equality of [KaCallableSignature] is derived from its content.
     */
    public sealed class KaCallableSignature<out S : KaCallableSymbol> : KaLifetimeOwner {
        /**
         * The original symbol for this signature.
         */
        public abstract val symbol: S
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         *
         * The module structure, source code, and binary content of all [KtModule]s in the project should be considered modified when this event
         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.ir.txt

          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun test (): kotlin.Int declared in <root>'
              CALL 'public final fun setContent (content: @[MyComposable] kotlin.Function0<kotlin.Unit>): kotlin.Int declared in p3' type=kotlin.Int origin=null
                content: FUN_EXPR type=kotlin.Function0<kotlin.Unit> origin=LAMBDA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableInlineFunctionExpressionParameter.ir.txt

          BLOCK_BODY
            CALL 'public final fun Row (a: p2.A, content: @[MyComposable] @[ExtensionFunctionType] kotlin.Function1<p3.RowScope, kotlin.Unit>): kotlin.Unit [inline] declared in p3' type=kotlin.Unit origin=null
              a: CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in p2.A' type=p2.A origin=null
              content: FUN_EXPR type=@[ExtensionFunctionType] kotlin.Function1<p3.RowScope, kotlin.Unit> origin=LAMBDA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 20:08:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         *
         * @param file A file to compile.
         *  The file must be either a source module file, or a [KtCodeFragment].
         *  For a [KtCodeFragment], a source module context, a compiled library source context, or an empty context(`null`) are supported.
         *
         * @param configuration Compiler configuration.
         *  It is recommended to submit at least the module name ([CommonConfigurationKeys.MODULE_NAME])
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/KtCompiledFileForOutputFile.kt

        override val path: String
            get() = outputFile.relativePath
    
        override val sourceFiles: List<File>
            get() = outputFile.sourceFiles
    
        override val content: ByteArray
            get() = outputFile.asByteArray()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 824 bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

        /**
         * The [KtModule]'s properties or references to other modules are being changed.
         *
         * #### Examples
         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableInlineFunctionExpressionParameter.kt

    }
    // MODULE: lib2(lib)
    // MODULE_KIND: LibraryBinary
    // FILE: p3/bar.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p2.A
    
    interface RowScope
    
    inline fun Row(a: A, content: @MyComposable RowScope.() -> Unit) {
        a.callA()
    }
    // MODULE: main(lib, lib2)
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p2.A
    import p2.B
    import p3.Row
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 20:08:24 UTC 2024
    - 639 bytes
    - Viewed (0)
Back to top