Skip to content

Commit 12689fc

Browse files
committed
Fix for invokespecial
1 parent 4223faf commit 12689fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Kernel/Mnemonics/_invokespecial.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function execute(): void
2828

2929
$arguments = [];
3030

31-
for ($i = $signature['arguments_count'] - 1; $i >= 0; $i--) {
31+
for ($i = $parsedSignature['arguments_count'] - 1; $i >= 0; $i--) {
3232
$arguments[$i] = $this->popFromOperandStack();
3333
}
3434

0 commit comments

Comments
 (0)