[IR] Allow fast reference path in SymbolTable for wrapped descriptors
This commit is contained in:
@@ -204,7 +204,11 @@ open class SymbolTable(
|
|||||||
descriptorToSymbol[d]
|
descriptorToSymbol[d]
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
descriptorToSymbol[d]
|
if (d.isBound()) {
|
||||||
|
((d.owner as? IrSymbolDeclaration<*>)?.symbol ?: descriptorToSymbol[d]) as S?
|
||||||
|
} else {
|
||||||
|
descriptorToSymbol[d]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user