You are here

public function Twig_Node_Expression_Name::isSimple in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Node/Expression/Name.php \Twig_Node_Expression_Name::isSimple()

File

vendor/Twig/Node/Expression/Name.php, line 84

Class

Twig_Node_Expression_Name

Code

public function isSimple() {
  return !$this
    ->isSpecial() && !$this
    ->getAttribute('is_defined_test');
}