[IR] Autogenerate IrTypeAliasImpl
^KT-65773 In Progress
This commit is contained in:
committed by
Space Team
parent
1008fa566f
commit
0b78cf9aa3
+18
-12
@@ -1,12 +1,17 @@
|
||||
/*
|
||||
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
// This file was generated automatically. See compiler/ir/ir.tree/tree-generator/ReadMe.md.
|
||||
// DO NOT MODIFY IT MANUALLY.
|
||||
|
||||
@file:Suppress("DuplicatedCode", "unused")
|
||||
|
||||
package org.jetbrains.kotlin.ir.declarations.impl
|
||||
|
||||
import org.jetbrains.kotlin.descriptors.TypeAliasDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.DescriptorVisibility
|
||||
import org.jetbrains.kotlin.descriptors.TypeAliasDescriptor
|
||||
import org.jetbrains.kotlin.ir.IrImplementationDetail
|
||||
import org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI
|
||||
import org.jetbrains.kotlin.ir.declarations.*
|
||||
@@ -18,24 +23,25 @@ import org.jetbrains.kotlin.name.Name
|
||||
class IrTypeAliasImpl @IrImplementationDetail constructor(
|
||||
override val startOffset: Int,
|
||||
override val endOffset: Int,
|
||||
override val symbol: IrTypeAliasSymbol,
|
||||
override var name: Name,
|
||||
override var visibility: DescriptorVisibility,
|
||||
override var expandedType: IrType,
|
||||
override var isActual: Boolean,
|
||||
override var origin: IrDeclarationOrigin,
|
||||
override val factory: IrFactory,
|
||||
override var name: Name,
|
||||
override var visibility: DescriptorVisibility,
|
||||
override val symbol: IrTypeAliasSymbol,
|
||||
override var isActual: Boolean,
|
||||
override var expandedType: IrType,
|
||||
) : IrTypeAlias() {
|
||||
init {
|
||||
symbol.bind(this)
|
||||
}
|
||||
override var annotations: List<IrConstructorCall> = emptyList()
|
||||
|
||||
override lateinit var parent: IrDeclarationParent
|
||||
override var annotations: List<IrConstructorCall> = emptyList()
|
||||
|
||||
override var typeParameters: List<IrTypeParameter> = emptyList()
|
||||
|
||||
@ObsoleteDescriptorBasedAPI
|
||||
override val descriptor: TypeAliasDescriptor
|
||||
get() = symbol.descriptor
|
||||
|
||||
override var typeParameters: List<IrTypeParameter> = emptyList()
|
||||
init {
|
||||
symbol.bind(this)
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -127,10 +127,6 @@ object ImplementationConfigurator : AbstractIrTreeImplementationConfigurator() {
|
||||
impl(file) {
|
||||
implementation.doPrint = false
|
||||
}
|
||||
|
||||
impl(typeAlias) {
|
||||
implementation.doPrint = false
|
||||
}
|
||||
}
|
||||
|
||||
private fun ImplementationContext.configureDeclarationWithLateBindinig(symbolType: ClassRef<*>) {
|
||||
|
||||
Reference in New Issue
Block a user