public function compile(Compiler $compiler)
 {
     $arguments = array();
     foreach ($this->nodes['arguments']->nodes as $node) {
         $arguments[] = $compiler->subcompile($node);
     }
     $function = $compiler->getFunction($this->attributes['name']);
     $compiler->raw(call_user_func_array($function['compiler'], $arguments));
 }