SymbolTable: unmute the symbol comparison condition
#KT-57049 Fixed
This commit is contained in:
committed by
Space Team
parent
e92cb49b24
commit
6c5afa4b87
@@ -220,7 +220,7 @@ open class SymbolTable(
|
|||||||
|
|
||||||
protected inline fun createOwnerSafe(symbol: S, createOwner: (S) -> B): B {
|
protected inline fun createOwnerSafe(symbol: S, createOwner: (S) -> B): B {
|
||||||
val owner = createOwner(symbol)
|
val owner = createOwner(symbol)
|
||||||
assert(symbol.isBound /*&& symbol.owner === owner*/) // TODO: unmute the second condition immediately when KT-57049 is fixed
|
assert(symbol.isBound && symbol.owner === owner)
|
||||||
return owner
|
return owner
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user