Home
last modified time | relevance | path

Searched refs:getVarName (Results 1 – 10 of 10) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DGetAttrExpression.php62 $var = '$'.$compiler->getVarName();
116 ->raw('((null === ('.$nullSafeNode->getVarName($compiler).' = ')
127 $compiler->raw($this->getVarName($compiler));
192 $key = '$'.$compiler->getVarName();
220 private function getVarName(Compiler $compiler): string function in Twig\\Node\\Expression\\GetAttrExpression
223 $this->setAttribute('var_name', $compiler->getVarName());
DTempNameExpression.php44 $this->setAttribute('name', $compiler->getVarName());
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/
DStartsWithBinary.php21 $left = $compiler->getVarName();
22 $right = $compiler->getVarName();
DEndsWithBinary.php21 $left = $compiler->getVarName();
22 $right = $compiler->getVarName();
/template/twigstarter/vendor/twig/twig/src/Node/
DWithNode.php39 $parentContextName = $compiler->getVarName();
45 $varsName = $compiler->getVarName();
DDeprecatedNode.php39 $varName = $compiler->getVarName();
DIncludeNode.php42 $template = $compiler->getVarName();
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Variable/
DTemplateVariable.php22 $this->setAttribute('name', $compiler->getVarName());
/template/twigstarter/vendor/twig/twig/src/
DCompiler.php250 public function getVarName(): string function in Twig\\Compiler
DParser.php73 public function getVarName(): string function in Twig\\Parser