Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 87 for CONSTRUCTOR (0.12 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForType.kt

    import org.jetbrains.kotlin.fir.types.ConeKotlinType
    import org.jetbrains.kotlin.fir.types.customAnnotations
    import org.jetbrains.kotlin.name.ClassId
    
    internal class KaFirAnnotationListForType private constructor(
        val coneType: ConeKotlinType,
        private val builder: KaSymbolByFirBuilder,
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
        private val backingAnnotations: List<KaAnnotation> by lazy {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KaAnnotationImpl.kt

         */
        lazyArguments: Lazy<List<KaNamedAnnotationValue>>,
        index: Int?,
    
        /**
         * The constructor symbol into which this annotation resolves if the annotation is correctly resolved
         */
        constructorSymbol: KaConstructorSymbol?,
        override val token: KaLifetimeToken
    ) : KaAnnotation {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

        extendsFrom(externalApi.get())
        outgoing.artifact(task)
        configureAsRuntimeElements(objects)
    }
    
    open class SoftwareComponentFactoryProvider @Inject constructor(val factory: SoftwareComponentFactory)
    val softwareComponentFactory = project.objects.newInstance(SoftwareComponentFactoryProvider::class.java).factory
    val gradleApiComponent = softwareComponentFactory.adhoc("gradleApi")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiConstructorSymbol.kt

        override val descriptor: ConstructorDescriptor? by cached {
            val bindingContext = analysisContext.analyze(psi, AnalysisMode.PARTIAL)
            bindingContext[BindingContext.CONSTRUCTOR, psi]
        }
    
        override val isPrimary: Boolean
            get() = withValidityAssertion { psi is KtPrimaryConstructor }
    
        override val containingClassId: ClassId?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirValueParameterSymbol.kt

            val ktPropertySymbol = builder.variableLikeBuilder.buildPropertySymbol(propertySymbol)
            check(ktPropertySymbol is KaKotlinPropertySymbol) {
                "Unexpected symbol for primary constructor property ${ktPropertySymbol.javaClass} for fir: ${firSymbol.fir.renderWithType()}"
            }
    
            ktPropertySymbol
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

                        convertArgument(it.c, this),
                        convertArgument(it.d, this)
                    )
                }
            }
        }
    }
    
    internal class KaDiagnosticConverterBuilder private constructor() {
        private val conversions = mutableMapOf<AbstractKtDiagnosticFactory, KaFirDiagnosticCreator>()
    
        fun add(diagnostic: KtDiagnosticFactory0, creator: KaFirDiagnostic0Creator) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/FirCallableSignature.kt

    import org.jetbrains.kotlin.fir.types.FirTypeRef
    
    /**
     * **Note**: the signature doesn't contain a name. This check should be done externally.
     */
    internal class FirCallableSignature private constructor(
        private val receiverType: String?,
        private val contextReceiverTypes: List<String>,
        private val parameters: List<String>?,
        private val typeParametersCount: Int,
        private val returnType: String,
    ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

    import org.gradle.internal.service.scopes.ServiceScope
    import java.util.Optional
    import javax.inject.Inject
    
    
    @NonExtensible
    @ServiceScope(Scope.Build::class)
    open class BuildFlowScope @Inject internal constructor(
        private val flowScheduler: FlowScheduler,
        private val flowProviders: FlowProviders,
        private val flowParametersInstantiator: FlowParametersInstantiator,
        instantiatorFactory: InstantiatorFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            config = configFile("codenarc-integtests.xml")
        }
    }
    
    val SourceSet.allGroovy: SourceDirectorySet
        get() = the<GroovySourceDirectorySet>()
    
    abstract class CodeNarcRule @Inject constructor(
        private val groovyVersion: String
    ) : ComponentMetadataRule {
        override fun execute(context: ComponentMetadataContext) {
            context.details.allVariants {
                withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/KtTypeRenderer.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaTypeAliasSymbol
    import org.jetbrains.kotlin.analysis.api.types.*
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    
    public class KaTypeRenderer private constructor(
        public val expandedTypeRenderingMode: KaExpandedTypeRenderingMode,
    
        public val capturedTypeRenderer: KaCapturedTypeRenderer,
        public val definitelyNotNullTypeRenderer: KaDefinitelyNotNullTypeRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top