$arguments */ public function callStaticMethod( string $method, array $arguments = [], ): Node { return new StaticMethodCallNode($this, $method, $arguments); } public function compile(Compiler $compiler): Compiler { return $compiler->write($this->name); } }