From 7f3246e4582a488327f2a9da01111db1a4a32b91 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 30 Jul 2025 07:32:58 +0900 Subject: chore: enable common ruleset of ecs --- src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php | 2 +- src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalSet.php | 2 +- src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalGet.php | 2 +- src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalSet.php | 2 +- src/WebAssembly/Structure/Instructions/Instrs/Variable/LocalTee.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WebAssembly/Structure/Instructions/Instrs/Variable') 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'; } } -- cgit v1.2.3-70-g09d2