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 ea1e4f4 commit 75ac205Copy full SHA for 75ac205
usvm-dataflow-ts/src/main/kotlin/org/usvm/dataflow/ts/infer/BackwardFlowFunctions.kt
@@ -506,8 +506,9 @@ class BackwardFlowFunctions(
506
if (doAddKnownTypes) {
507
// f(x:T) |= x:T, where T is the type of the argument in f's signature
508
for ((index, arg) in callExpr.args.withIndex()) {
509
+ val param = callExpr.method.parameters.getOrNull(index) ?: continue
510
val base = arg.toBase()
- val type = EtsTypeFact.from(callExpr.method.parameters[index].type)
511
+ val type = EtsTypeFact.from(param.type)
512
result += TypedVariable(base, type)
513
}
514
0 commit comments