We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3639bfb commit 56bd4b5Copy full SHA for 56bd4b5
1 file changed
usvm-ts/src/main/kotlin/org/usvm/machine/operator/TsBinaryOperator.kt
@@ -633,8 +633,8 @@ sealed interface TsBinaryOperator {
633
}
634
635
636
- check(!lhsValue.isFakeObject())
637
- check(!rhsValue.isFakeObject())
+ check(!lhsValue.isFakeObject()) { "Nested fake objects are not supported" }
+ check(!rhsValue.isFakeObject()) { "Nested fake objects are not supported" }
638
639
if (lhsValue.sort == addressSort && rhsValue.sort == addressSort) {
640
val left = lhsValue.asExpr(addressSort)
0 commit comments