You are here

public function Twig_Parser::embedTemplate in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Parser.php \Twig_Parser::embedTemplate()

File

vendor/Twig/Parser.php, line 282

Class

Twig_Parser
Default parser implementation.

Code

public function embedTemplate(Twig_Node_Module $template) {
  $template
    ->setIndex(mt_rand());
  $this->embeddedTemplates[] = $template;
}