public function Twig_Node_Expression_MethodCall::compile

Compiles the node to PHP.

Parameters

Twig_Compiler A Twig_Compiler instance:

Overrides Twig_Node::compile

File

drupal/core/vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php, line 22

Class

Twig_Node_Expression_MethodCall

Code

public function compile(Twig_Compiler $compiler) {
  $compiler
    ->subcompile($this
    ->getNode('node'))
    ->raw('->')
    ->raw($this
    ->getAttribute('method'))
    ->raw('(');
  $first = true;
  foreach ($this
    ->getNode('arguments')
    ->getKeyValuePairs() as $pair) {
    if (!$first) {
      $compiler
        ->raw(', ');
    }
    $first = false;
    $compiler
      ->subcompile($pair['value']);
  }
  $compiler
    ->raw(')');
}