From 3d24665c0d6f2418131186899a3f8c9aa39d56c5 Mon Sep 17 00:00:00 2001 From: Roman Artemev Date: Mon, 20 Apr 2020 14:34:50 +0300 Subject: [PATCH] [IR] Use `ReferenceSymbolTable` in `BuiltinSymbolsBase` --- .../src/org/jetbrains/kotlin/backend/common/ir/Ir.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ir/backend.common/src/org/jetbrains/kotlin/backend/common/ir/Ir.kt b/compiler/ir/backend.common/src/org/jetbrains/kotlin/backend/common/ir/Ir.kt index 4aaa659b887..41ad8e63c6d 100644 --- a/compiler/ir/backend.common/src/org/jetbrains/kotlin/backend/common/ir/Ir.kt +++ b/compiler/ir/backend.common/src/org/jetbrains/kotlin/backend/common/ir/Ir.kt @@ -48,7 +48,7 @@ abstract class Ir(val context: T, val irModule: Ir /** * Symbols for builtins that are available without any context and are not specific to any backend */ -open class BuiltinSymbolsBase(protected val irBuiltIns: IrBuiltIns, private val builtIns: KotlinBuiltIns, private val symbolTable: SymbolTable) { +open class BuiltinSymbolsBase(protected val irBuiltIns: IrBuiltIns, private val builtIns: KotlinBuiltIns, private val symbolTable: ReferenceSymbolTable) { protected fun builtInsPackage(vararg packageNameSegments: String) = builtIns.builtInsModule.getPackage(FqName.fromSegments(listOf(*packageNameSegments))).memberScope