aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/StackEntries/Label.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/StackEntries/Label.php')
-rw-r--r--src/Execution/StackEntries/Label.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Execution/StackEntries/Label.php b/src/Execution/StackEntries/Label.php
index b83fb0f..e6b9954 100644
--- a/src/Execution/StackEntries/Label.php
+++ b/src/Execution/StackEntries/Label.php
@@ -5,17 +5,14 @@ declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Execution\StackEntries;
use Nsfisis\Waddiwasi\Execution\StackEntry;
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-final readonly class Label extends StackEntry
+final class Label extends StackEntry
{
/**
* @param int<0, max> $arity
- * @param list<Instr> $target
*/
public function __construct(
- public int $arity,
- public array $target,
+ public readonly int $arity,
) {
}
}