diff options
Diffstat (limited to 'src/Structure/Instructions/Instrs/Variable/LocalSet.php')
| -rw-r--r-- | src/Structure/Instructions/Instrs/Variable/LocalSet.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Structure/Instructions/Instrs/Variable/LocalSet.php b/src/Structure/Instructions/Instrs/Variable/LocalSet.php new file mode 100644 index 0000000..d103c22 --- /dev/null +++ b/src/Structure/Instructions/Instrs/Variable/LocalSet.php @@ -0,0 +1,16 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Variable; + +use Nsfisis\Waddiwasi\Structure\Instructions\Instr; +use Nsfisis\Waddiwasi\Structure\Types\LocalIdx; + +final readonly class LocalSet extends Instr +{ + public function __construct( + public LocalIdx $var, + ) { + } +} |
