[Wasm] Log interfaces implementations ids in type info logging
This commit is contained in:
+10
@@ -191,6 +191,16 @@ class WasmCompiledModuleFragment(val irBuiltIns: IrBuiltIns) {
|
|||||||
println(" -- $index ${iface.owner.fqNameWhenAvailable}")
|
println(" -- $index ${iface.owner.fqNameWhenAvailable}")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
println("Interfaces implementations: ")
|
||||||
|
for ((interfaceImpl, index: Int) in interfaceImplementationIds) {
|
||||||
|
println(
|
||||||
|
" -- $index" +
|
||||||
|
" Interface: ${interfaceImpl.irInterface.owner.fqNameWhenAvailable}" +
|
||||||
|
" Class: ${interfaceImpl.irClass.owner.fqNameWhenAvailable}"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
println("Virtual functions: ")
|
println("Virtual functions: ")
|
||||||
for ((index, vf: IrSimpleFunctionSymbol) in virtualFunctions.withIndex()) {
|
for ((index, vf: IrSimpleFunctionSymbol) in virtualFunctions.withIndex()) {
|
||||||
println(" -- $index ${vf.owner.fqNameWhenAvailable}")
|
println(" -- $index ${vf.owner.fqNameWhenAvailable}")
|
||||||
|
|||||||
Reference in New Issue
Block a user