diff options
Diffstat (limited to 'src/Execution/ControlFlowResults/Br.php')
| -rw-r--r-- | src/Execution/ControlFlowResults/Br.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Execution/ControlFlowResults/Br.php b/src/Execution/ControlFlowResults/Br.php new file mode 100644 index 0000000..8ca7ff3 --- /dev/null +++ b/src/Execution/ControlFlowResults/Br.php @@ -0,0 +1,16 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\Execution\ControlFlowResults; + +use Nsfisis\Waddiwasi\Execution\ControlFlowResult; +use Nsfisis\Waddiwasi\Structure\Types\LabelIdx; + +final readonly class Br extends ControlFlowResult +{ + protected function __construct( + public LabelIdx $label, + ) { + } +} |
