aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Refs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Refs')
-rw-r--r--src/Execution/Refs/RefExtern.php3
-rw-r--r--src/Execution/Refs/RefFunc.php3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/Execution/Refs/RefExtern.php b/src/Execution/Refs/RefExtern.php
index 4beccb4..8c0509d 100644
--- a/src/Execution/Refs/RefExtern.php
+++ b/src/Execution/Refs/RefExtern.php
@@ -4,13 +4,12 @@ declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Execution\Refs;
-use Nsfisis\Waddiwasi\Execution\ExternAddr;
use Nsfisis\Waddiwasi\Execution\Ref;
final readonly class RefExtern extends Ref
{
public function __construct(
- public ExternAddr $addr,
+ public int $addr,
) {
}
}
diff --git a/src/Execution/Refs/RefFunc.php b/src/Execution/Refs/RefFunc.php
index 449b780..126150c 100644
--- a/src/Execution/Refs/RefFunc.php
+++ b/src/Execution/Refs/RefFunc.php
@@ -4,13 +4,12 @@ declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Execution\Refs;
-use Nsfisis\Waddiwasi\Execution\FuncAddr;
use Nsfisis\Waddiwasi\Execution\Ref;
final readonly class RefFunc extends Ref
{
public function __construct(
- public FuncAddr $addr,
+ public int $addr,
) {
}
}