diff options
Diffstat (limited to 'src/Execution/Refs')
| -rw-r--r-- | src/Execution/Refs/RefExtern.php | 15 | ||||
| -rw-r--r-- | src/Execution/Refs/RefFunc.php | 15 | ||||
| -rw-r--r-- | src/Execution/Refs/RefNull.php | 16 |
3 files changed, 0 insertions, 46 deletions
diff --git a/src/Execution/Refs/RefExtern.php b/src/Execution/Refs/RefExtern.php deleted file mode 100644 index 8c0509d..0000000 --- a/src/Execution/Refs/RefExtern.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Execution\Refs; - -use Nsfisis\Waddiwasi\Execution\Ref; - -final readonly class RefExtern extends Ref -{ - public function __construct( - public int $addr, - ) { - } -} diff --git a/src/Execution/Refs/RefFunc.php b/src/Execution/Refs/RefFunc.php deleted file mode 100644 index 126150c..0000000 --- a/src/Execution/Refs/RefFunc.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Execution\Refs; - -use Nsfisis\Waddiwasi\Execution\Ref; - -final readonly class RefFunc extends Ref -{ - public function __construct( - public int $addr, - ) { - } -} diff --git a/src/Execution/Refs/RefNull.php b/src/Execution/Refs/RefNull.php deleted file mode 100644 index b4323d7..0000000 --- a/src/Execution/Refs/RefNull.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Execution\Refs; - -use Nsfisis\Waddiwasi\Execution\Ref; -use Nsfisis\Waddiwasi\Structure\Types\RefType; - -final readonly class RefNull extends Ref -{ - public function __construct( - public RefType $type, - ) { - } -} |
