aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/ControlFlowResult.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/ControlFlowResult.php')
-rw-r--r--src/Execution/ControlFlowResult.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Execution/ControlFlowResult.php b/src/Execution/ControlFlowResult.php
index 1b995d9..0bb831a 100644
--- a/src/Execution/ControlFlowResult.php
+++ b/src/Execution/ControlFlowResult.php
@@ -4,11 +4,9 @@ declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Execution;
-use Nsfisis\Waddiwasi\Structure\Types\LabelIdx;
-
abstract readonly class ControlFlowResult
{
- final public static function Br(LabelIdx $label): ControlFlowResults\Br
+ final public static function Br(int $label): ControlFlowResults\Br
{
return new ControlFlowResults\Br($label);
}