fix: print instruction index of warning
This commit is contained in:
parent
78d1c97aa1
commit
a63db11046
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ internal class SignatureChecker {
|
|||
for (i in (warning.actualIndex - 5).coerceAtLeast(0) until warning.actualIndex) {
|
||||
println("$i: ${instructions[i].opcode}")
|
||||
}
|
||||
println(warning.toString())
|
||||
println("${warning.actualIndex}: $warning")
|
||||
for (i in warning.actualIndex + 1 until (warning.actualIndex + 5).coerceAtMost(instructions.size)) {
|
||||
println("$i: ${instructions[i].opcode}")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue