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.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/Execution/ControlFlowResult.php b/src/Execution/ControlFlowResult.php
deleted file mode 100644
index 0bb831a..0000000
--- a/src/Execution/ControlFlowResult.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution;
-
-abstract readonly class ControlFlowResult
-{
- final public static function Br(int $label): ControlFlowResults\Br
- {
- return new ControlFlowResults\Br($label);
- }
-
- final public static function Return(): ControlFlowResults\Return_
- {
- return new ControlFlowResults\Return_();
- }
-}