Home
last modified time | relevance | path

Searched refs:getVariableGetter (Results 1 – 7 of 7) sorted by relevance

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DForTest.php63 \$context['_seq'] = twig_ensure_traversable({$this->getVariableGetter('items')});
65 echo {$this->getVariableGetter('foo')};
85 \$context['_seq'] = twig_ensure_traversable({$this->getVariableGetter('values')});
100 echo {$this->getVariableGetter('foo')};
128 \$context['_seq'] = twig_ensure_traversable({$this->getVariableGetter('values')});
137 echo {$this->getVariableGetter('foo')};
161 \$context['_seq'] = twig_ensure_traversable({$this->getVariableGetter('values')});
177 echo {$this->getVariableGetter('foo')};
189 echo {$this->getVariableGetter('foo')};
H A DIfTest.php52 echo {$this->getVariableGetter('foo')};
69 echo {$this->getVariableGetter('foo')};
71 echo {$this->getVariableGetter('bar')};
86 echo {$this->getVariableGetter('foo')};
88 echo {$this->getVariableGetter('bar')};
H A DSetTest.php72 list(\$context["foo"], \$context["bar"]) = ["foo", {$this->getVariableGetter('bar')}];
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Node/
H A DTransTest.php43 $tests[] = array($node, sprintf('echo gettext(%s);', $this->getVariableGetter('foo')));
61 …tr(gettext("J\'ai %%foo%% pommes"), array("%%foo%%" => %s, ));', $this->getVariableGetter('foo')));
77 …ame%%" => %s, "%%count%%" => abs(12), ));', $this->getVariableGetter('name'), $this->getVariableGe…
87 …tr(gettext("J\'ai %%foo%% pommes"), array("%%foo%%" => %s, ));', $this->getVariableGetter('foo')));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DGetAttrTest.php44 …ode, sprintf('%s%s, "bar", [])', $this->getAttributeGetter(), $this->getVariableGetter('foo', 1))];
47 …ntf('%s%s, "bar", [], "array")', $this->getAttributeGetter(), $this->getVariableGetter('foo', 1))];
53 …, "method")', $this->getAttributeGetter(), $this->getVariableGetter('foo', 1), $this->getVariableG…
H A DNameTest.php43 [$node, $this->getVariableGetter('foo', 1), $env1],
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
H A DNodeTestCase.php54 protected function getVariableGetter($name, $line = false) function in Twig\\Test\\NodeTestCase