Home
last modified time | relevance | path

Searched refs:compiler (Results 26 – 50 of 188) sorted by relevance

12345678

/template/twigstarter/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 DVariadicExpression.php18 public function compile(Compiler $compiler) argument
20 $compiler->raw('...');
22 parent::compile($compiler);
H A DParentExpression.php29 public function compile(Compiler $compiler) argument
32 $compiler
39 $compiler
H A DTestExpression.php29 public function compile(Compiler $compiler) argument
32 $test = $compiler->getEnvironment()->getTest($name);
40 $this->compileCallable($compiler);
H A DFilterExpression.php25 public function compile(Compiler $compiler) argument
28 $filter = $compiler->getEnvironment()->getFilter($name);
38 $this->compileCallable($compiler);
H A DFunctionExpression.php24 public function compile(Compiler $compiler) argument
27 $function = $compiler->getEnvironment()->getFunction($name);
41 $this->compileCallable($compiler);
H A DNullCoalesceExpression.php38 public function compile(Compiler $compiler) argument
49 $compiler
57 parent::compile($compiler);
/template/twigstarter/vendor/twig/twig/src/Node/
H A DSandboxedPrintNode.php30 public function compile(Compiler $compiler) argument
32 $compiler
38 $compiler
43 $compiler
H A DForLoopNode.php28 public function compile(Compiler $compiler) argument
31 $compiler->write("\$context['_iterated'] = true;\n");
35 $compiler
42 $compiler
H A DBlockNode.php29 public function compile(Compiler $compiler) argument
31 $compiler
38 $compiler
H A DCheckSecurityCallNode.php21 public function compile(Compiler $compiler) argument
23 $compiler
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Test/
H A DConstantTest.php28 public function compile(Compiler $compiler) argument
30 $compiler
37 $compiler
44 $compiler
/template/twigstarter/vendor/twig/twig/src/Test/
H A DNodeTestCase.php34 $compiler = $this->getCompiler($environment);
35 $compiler->compile($node);
38 $this->assertStringMatchesFormat($source, trim($compiler->getSource()));
40 $this->assertEquals($source, trim($compiler->getSource()));
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/
H A DSpaceshipBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('<=>');
H A DAddBinary.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 DBitwiseXorBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('^');
H A DMulBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('*');
H A DPowerBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('**');
H A DEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('==');
H A DGreaterEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('>=');
H A DLessEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('<=');
H A DAndBinary.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('|');
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Unary/
H A DNegUnary.php19 public function operator(Compiler $compiler) argument
21 $compiler->raw('-');

12345678