public function Twig_Node_Expression_Name::isSpecial in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/lib/Twig/Node/Expression/Name.php \Twig_Node_Expression_Name::isSpecial()
2 calls to Twig_Node_Expression_Name::isSpecial()
- Twig_Node_Expression_Name::compile in vendor/
twig/ twig/ lib/ Twig/ Node/ Expression/ Name.php - Compiles the node to PHP.
- Twig_Node_Expression_Name::isSimple in vendor/
twig/ twig/ lib/ Twig/ Node/ Expression/ Name.php
File
- vendor/
twig/ twig/ lib/ Twig/ Node/ Expression/ Name.php, line 89
Class
Code
public function isSpecial() {
return isset($this->specialVars[$this
->getAttribute('name')]);
}