aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/ControlFlowResults/Br.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/ControlFlowResults/Br.php')
-rw-r--r--src/Execution/ControlFlowResults/Br.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Execution/ControlFlowResults/Br.php b/src/Execution/ControlFlowResults/Br.php
deleted file mode 100644
index a9c78b7..0000000
--- a/src/Execution/ControlFlowResults/Br.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\ControlFlowResults;
-
-use Nsfisis\Waddiwasi\Execution\ControlFlowResult;
-
-final readonly class Br extends ControlFlowResult
-{
- protected function __construct(
- public int $label,
- ) {
- }
-}