JVM_IR: use IrBuiltIns instead of descriptor in IrTypeMapper

This commit is contained in:
Georgy Bronnikov
2021-08-27 15:01:30 +03:00
committed by teamcityserver
parent 2f697e9195
commit a4cebeea36
@@ -270,6 +270,6 @@ private class IrTypeCheckerContextForTypeMapping(
}
override fun functionNTypeConstructor(n: Int): IrClassSymbol {
return backendContext.referenceClass(backendContext.builtIns.getFunction(n))
return backendContext.irBuiltIns.functionN(n).symbol
}
}