We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73af2a commit de0ebd3Copy full SHA for de0ebd3
1 file changed
usvm-ts/src/main/kotlin/org/usvm/machine/expr/CallApproximations.kt
@@ -537,10 +537,12 @@ private fun TsExprResolver.handleArrayJoin(
537
"Array.join() is not fully implemented, returning a symbolic string constant"
538
}
539
scope.calcOnState {
540
- mkStringConstant("joined_array_result", scope)
+ mkStringConstant(ARRAY_JOIN_RESULT, scope)
541
542
543
544
+private const val ARRAY_JOIN_RESULT = "joined_array_result"
545
+
546
/**
547
* Handles the `Array.slice(start, end)` method call.
548
* Returns a shallow copy of a portion of the array from the `start` index to the `end` index.
0 commit comments