public function Twig_Compiler::raw

Adds a raw string to the compiled code.

Parameters

string $string The string:

Return value

Twig_Compiler The current compiler instance

1 call to Twig_Compiler::raw()
Twig_Compiler::repr in drupal/core/vendor/twig/twig/lib/Twig/Compiler.php
Returns a PHP representation of a given value.

File

drupal/core/vendor/twig/twig/lib/Twig/Compiler.php, line 109

Class

Twig_Compiler
Compiles a node to PHP code.

Code

public function raw($string) {
  $this->source .= $string;
  return $this;
}