aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Stack.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Stack.php')
-rw-r--r--src/Execution/Stack.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Execution/Stack.php b/src/Execution/Stack.php
index 3a40764..467bd9b 100644
--- a/src/Execution/Stack.php
+++ b/src/Execution/Stack.php
@@ -79,12 +79,12 @@ final class Stack
$this->pushValue(Val::RefNull($type));
}
- public function pushRefFunc(FuncAddr $addr): void
+ public function pushRefFunc(int $addr): void
{
$this->pushValue(Val::RefFunc($addr));
}
- public function pushRefExtern(ExternAddr $addr): void
+ public function pushRefExtern(int $addr): void
{
$this->pushValue(Val::RefExtern($addr));
}