aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Structure/Instructions/Instrs/Variable
diff options
context:
space:
mode:
Diffstat (limited to 'src/WebAssembly/Structure/Instructions/Instrs/Variable')
-rw-r--r--src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php2
-rw-r--r--src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalSet.php2
-rw-r--r--src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalGet.php2
-rw-r--r--src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalSet.php2
-rw-r--r--src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalTee.php2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php b/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php
index 2358325..90394b6 100644
--- a/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php
+++ b/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php
@@ -15,6 +15,6 @@ final readonly class GlobalGet extends Instr
public static function opName(): string
{
- return "global.get";
+ return 'global.get';
}
}
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalSet.php b/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalSet.php
index a8d2cf4..8b105bc 100644
--- a/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalSet.php
+++ b/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalSet.php
@@ -15,6 +15,6 @@ final readonly class GlobalSet extends Instr
public static function opName(): string
{
- return "global.set";
+ return 'global.set';
}
}
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalGet.php b/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalGet.php
index de610d3..2f5f0a7 100644
--- a/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalGet.php
+++ b/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalGet.php
@@ -15,6 +15,6 @@ final readonly class LocalGet extends Instr
public static function opName(): string
{
- return "local.get";
+ return 'local.get';
}
}
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalSet.php b/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalSet.php
index 350c6bd..21f554f 100644
--- a/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalSet.php
+++ b/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalSet.php
@@ -15,6 +15,6 @@ final readonly class LocalSet extends Instr
public static function opName(): string
{
- return "local.set";
+ return 'local.set';
}
}
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalTee.php b/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalTee.php
index 62d42c5..c81d5af 100644
--- a/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalTee.php
+++ b/src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalTee.php
@@ -15,6 +15,6 @@ final readonly class LocalTee extends Instr
public static function opName(): string
{
- return "local.tee";
+ return 'local.tee';
}
}