[IR][K/JS] Removed unused function

This commit is contained in:
Igor Chevdar
2024-01-16 19:37:00 +02:00
committed by Space Team
parent 978bf3d38d
commit 006410641b
2 changed files with 1 additions and 9 deletions
@@ -43,7 +43,6 @@ fun IrExpression.isAdaptedFunctionReference() =
interface InlineFunctionResolver {
fun getFunctionDeclaration(symbol: IrFunctionSymbol): IrFunction = symbol.owner
fun getFunctionSymbol(irFunction: IrFunction): IrFunctionSymbol = irFunction.symbol
fun shouldExcludeFunctionFromInlining(symbol: IrFunctionSymbol): Boolean {
return Symbols.isLateinitIsInitializedPropertyGetter(symbol) || Symbols.isTypeOfIntrinsic(symbol)
}