aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Types/FuncType.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Types/FuncType.php')
-rw-r--r--src/Structure/Types/FuncType.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Structure/Types/FuncType.php b/src/Structure/Types/FuncType.php
index 17ef98a..e445512 100644
--- a/src/Structure/Types/FuncType.php
+++ b/src/Structure/Types/FuncType.php
@@ -7,8 +7,14 @@ namespace Nsfisis\Waddiwasi\Structure\Types;
final readonly class FuncType
{
public function __construct(
- public ResultType $args,
- public ResultType $returns,
+ public ResultType $params,
+ public ResultType $results,
) {
}
+
+ public function equals(FuncType $other): bool
+ {
+ return $this->params->equals($other->params)
+ && $this->results->equals($other->results);
+ }
}