Home
last modified time | relevance | path

Searched refs:compiler (Results 201 – 225 of 586) sorted by path

12345678910>>...24

/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst352 public function compile(\Twig\Compiler $compiler)
354 $compiler
531 public function compile(\Twig\Compiler $compiler)
533 $compiler
542 The compiler implements a fluid interface and provides methods that helps the
H A Dadvanced_legacy.rst471 public function compile(\Twig\Compiler $compiler)
473 $compiler
482 The compiler implements a fluid interface and provides methods that helps the
H A Dinternals.rst21 * Eventually, the *compiler* transforms the AST into PHP code.
112 The last step is done by the compiler. It takes a node tree as an input and
139 The default compiler (``\Twig\Compiler``) can be changed by calling the
142 $twig->setCompiler($compiler);
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Node/Expression/
H A DExtensionReference.php31 public function compile(Compiler $compiler) argument
33 $compiler->raw(sprintf("\$this->env->getExtension('%s')", $this->getAttribute('name')));
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/
H A DNodeInterface.php26 public function compile(Compiler $compiler); argument
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php58 protected $compiler; variable in Twig\\Environment
758 if (null === $this->compiler) {
759 $this->compiler = new Compiler($this);
762 return $this->compiler;
765 public function setCompiler(\Twig_CompilerInterface $compiler) argument
767 $this->compiler = $compiler;
777 if (null === $this->compiler) {
778 $this->compiler = new Compiler($this);
781 return $this->compiler->compile($node)->getSource();
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DAutoEscapeNode.php34 public function compile(Compiler $compiler) argument
36 $compiler->subcompile($this->getNode('body'));
H A DBlockNode.php29 public function compile(Compiler $compiler) argument
31 $compiler
37 $compiler
H A DBlockReferenceNode.php29 public function compile(Compiler $compiler) argument
31 $compiler
H A DCheckSecurityNode.php34 public function compile(Compiler $compiler) argument
47 $compiler
H A DCheckToStringNode.php34 public function compile(Compiler $compiler) argument
36 $compiler
H A DDeprecatedNode.php30 public function compile(Compiler $compiler) argument
32 $compiler->addDebugInfo($this);
37 $compiler->write('@trigger_error(')
40 $varName = $compiler->getVarName();
41 $compiler->write(sprintf('$%s = ', $varName))
47 $compiler
H A DDoNode.php29 public function compile(Compiler $compiler) argument
31 $compiler
H A DEmbedNode.php36 protected function addGetTemplate(Compiler $compiler) argument
38 $compiler
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DArrayExpression.php68 public function compile(Compiler $compiler) argument
70 $compiler->raw('[');
74 $compiler->raw(', ');
78 $compiler
84 $compiler->raw(']');
H A DAssignNameExpression.php19 public function compile(Compiler $compiler) argument
21 $compiler
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
H A DAbstractBinary.php25 public function compile(Compiler $compiler) argument
27 $compiler
32 $this->operator($compiler);
33 $compiler
40 abstract public function operator(Compiler $compiler); argument
H A DAddBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('+');
H A DAndBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('&&');
H A DBitwiseAndBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('&');
H A DBitwiseOrBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('|');
H A DBitwiseXorBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('^');
H A DConcatBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('.');
H A DDivBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('/');
H A DEndsWithBinary.php18 public function compile(Compiler $compiler) argument
20 $left = $compiler->getVarName();
21 $right = $compiler->getVarName();
22 $compiler
31 public function operator(Compiler $compiler) argument
33 return $compiler->raw('');

12345678910>>...24