Home
last modified time | relevance | path

Searched refs:elmInstance (Results 1 – 2 of 2) sorted by relevance

/plugin/ifauthex/lib/
Dgrammar.php77 public static function getInstanceLiteralValue($elmInstance) { argument
78 $strValue = $elmInstance->getStringValue();
84 public function _evaluateWellFormed($elmInstance) { argument
85 $userName = self::getInstanceLiteralValue($elmInstance);
96 public function ensureWellFormed($elmInstance) { argument
97 parent::ensureWellFormed($elmInstance);
98 if (count($elmInstance->args()) != 1) {
99 …throw new MalformedExpressionException($elmInstance, 'A subexpression must have exactly one root');
102 public function _evaluateWellFormed($elmInstance) { argument
103 return $elmInstance->evaluateArgs()[0];
[all …]
Dparser.php545 public function _evaluateWellFormed($elmInstance) { argument
549 public function evaluate($elmInstance) { argument
550 $this->ensureWellFormed($elmInstance);
551 return $this->_evaluateWellFormed($elmInstance);
563 public function getRepresentation($elmInstance) { argument
564 $this->ensureWellFormed($elmInstance);
566 foreach ($elmInstance->args() as $arg) {
603 public function ensureWellFormed($elmInstance) { argument
604 if ($elmInstance->definition() != $this) {
607 $args = $elmInstance->args();
[all …]