diff --git a/src/Language/AST/Node.php b/src/Language/AST/Node.php index fc3349c..05ffa03 100644 --- a/src/Language/AST/Node.php +++ b/src/Language/AST/Node.php @@ -82,11 +82,6 @@ abstract class Node public function __toString() { $tmp = $this->toArray(); - $tmp['loc'] = [ - 'start' => $this->loc->start, - 'end' => $this->loc->end - ]; - return json_encode($tmp); }