diff options
Diffstat (limited to 'src/WebAssembly/Structure/Instructions/Instrs/Control/End.php')
| -rw-r--r-- | src/WebAssembly/Structure/Instructions/Instrs/Control/End.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Control/End.php b/src/WebAssembly/Structure/Instructions/Instrs/Control/End.php new file mode 100644 index 0000000..5bdb8b9 --- /dev/null +++ b/src/WebAssembly/Structure/Instructions/Instrs/Control/End.php @@ -0,0 +1,15 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Instructions\Instrs\Control; + +use Nsfisis\Waddiwasi\WebAssembly\Structure\Instructions\Instr; + +final readonly class End extends Instr +{ + public static function opName(): string + { + return "end"; + } +} |
