diff --git a/src/Interpreter/Type/Literal/LoxNil.php b/src/Interpreter/Type/Literal/LoxNil.php index c3ff36d..8a6c0bf 100644 --- a/src/Interpreter/Type/Literal/LoxNil.php +++ b/src/Interpreter/Type/Literal/LoxNil.php @@ -13,12 +13,4 @@ public function __construct() { parent::__construct(null); } - - /** - * @inheritDoc - */ - public function __toString(): string - { - return 'nil'; - } }