aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Structure/Instructions/Instrs/Variable
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-30 07:32:58 +0900
committernsfisis <nsfisis@gmail.com>2025-07-30 07:32:58 +0900
commit7f3246e4582a488327f2a9da01111db1a4a32b91 (patch)
treec37f919e41949d1b482aaae4bedbdd2f65b5baef /src/WebAssembly/Structure/Instructions/Instrs/Variable
parent6f18d4c860f16f094e9b3dececeb47be2a94d585 (diff)
downloadphp-waddiwasi-7f3246e4582a488327f2a9da01111db1a4a32b91.tar.gz
php-waddiwasi-7f3246e4582a488327f2a9da01111db1a4a32b91.tar.zst
php-waddiwasi-7f3246e4582a488327f2a9da01111db1a4a32b91.zip
chore: enable common ruleset of ecs
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';
}
}