Parser for Short Hand Syntax

SVN:b1312[5748]
This commit is contained in:
Eric Espié
2018-04-26 15:26:41 +00:00
parent 1900546440
commit 30494756fc
3 changed files with 23 additions and 13 deletions

View File

@@ -843,9 +843,12 @@ class FalseExpression extends ScalarExpression
class ExternalFieldExpression extends UnaryExpression
{
public function __construct($value)
protected $m_aFieldExpressions = array();
protected $m_sName;
public function __construct($sName, $aExpressions)
{
parent::__construct($value);
parent::__construct($sName);
}
}