aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Nums
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-03-13 23:11:23 +0900
committernsfisis <nsfisis@gmail.com>2024-03-13 23:11:23 +0900
commit3702e772d72cb46c6cb13e21d570427bd0b4e493 (patch)
tree61949354c5c546200797cad9f1ad520e258b93a6 /src/Execution/Nums
parent804dea0ddefe826f535738cda9cc5ad900c083c4 (diff)
downloadphp-waddiwasi-3702e772d72cb46c6cb13e21d570427bd0b4e493.tar.gz
php-waddiwasi-3702e772d72cb46c6cb13e21d570427bd0b4e493.tar.zst
php-waddiwasi-3702e772d72cb46c6cb13e21d570427bd0b4e493.zip
perf: make Val to primitive
Diffstat (limited to 'src/Execution/Nums')
-rw-r--r--src/Execution/Nums/F32_.php18
-rw-r--r--src/Execution/Nums/F64_.php18
-rw-r--r--src/Execution/Nums/I32.php18
-rw-r--r--src/Execution/Nums/I64.php18
4 files changed, 0 insertions, 72 deletions
diff --git a/src/Execution/Nums/F32_.php b/src/Execution/Nums/F32_.php
deleted file mode 100644
index 5c7b749..0000000
--- a/src/Execution/Nums/F32_.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Nums;
-
-use Nsfisis\Waddiwasi\Execution\Num;
-
-final readonly class F32_ extends Num
-{
- /**
- * @param F32 $value
- */
- public function __construct(
- public float $value,
- ) {
- }
-}
diff --git a/src/Execution/Nums/F64_.php b/src/Execution/Nums/F64_.php
deleted file mode 100644
index c24709e..0000000
--- a/src/Execution/Nums/F64_.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Nums;
-
-use Nsfisis\Waddiwasi\Execution\Num;
-
-final readonly class F64_ extends Num
-{
- /**
- * @param F64 $value
- */
- public function __construct(
- public float $value,
- ) {
- }
-}
diff --git a/src/Execution/Nums/I32.php b/src/Execution/Nums/I32.php
deleted file mode 100644
index fbc6fab..0000000
--- a/src/Execution/Nums/I32.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Nums;
-
-use Nsfisis\Waddiwasi\Execution\Num;
-
-final readonly class I32 extends Num
-{
- /**
- * @param S32 $value
- */
- public function __construct(
- public int $value,
- ) {
- }
-}
diff --git a/src/Execution/Nums/I64.php b/src/Execution/Nums/I64.php
deleted file mode 100644
index 889b863..0000000
--- a/src/Execution/Nums/I64.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution\Nums;
-
-use Nsfisis\Waddiwasi\Execution\Num;
-
-final readonly class I64 extends Num
-{
- /**
- * @param S64 $value
- */
- public function __construct(
- public int $value,
- ) {
- }
-}