Adds a quoted string to the compiled code.
string $value The string:
Twig_Compiler The current compiler instance
public function string($value) { $this->source .= sprintf('"%s"', addcslashes($value, "\0\t\"\$\\")); return $this; }