We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59393c2 commit 0f18a8cCopy full SHA for 0f18a8c
usvm-ts/src/main/kotlin/org/usvm/machine/expr/TsExpressions.kt
@@ -100,14 +100,3 @@ fun UExpr<*>.extractInt(): Int {
100
}
101
error("Cannot extract Int from $this")
102
103
-
104
-/**
105
- * Extracts an integer value from [this] expression if possible.
106
- * Otherwise, throws an error.
107
- */
108
-fun UExpr<*>.extractInt(): Int {
109
- if (this@extractInt is KBitVec32Value) {
110
- return intValue
111
- }
112
- error("Cannot extract Int from $this")
113
-}
0 commit comments