コード例 #1
0
ファイル: MacroExpression.php プロジェクト: nramenta/flow
 public function __construct($module, $name, $args, $line)
 {
     parent::__construct($line);
     $this->module = $module;
     $this->name = $name;
     $this->args = $args;
 }
コード例 #2
0
 public function __construct($expr1, $expr2, $expr3, $line)
 {
     parent::__construct($line);
     $this->expr1 = $expr1;
     $this->expr2 = $expr2;
     $this->expr3 = $expr3;
 }
コード例 #3
0
ファイル: AttributeExpression.php プロジェクト: nramenta/flow
 public function __construct($node, $attr, $args, $line)
 {
     parent::__construct($line);
     $this->node = $node;
     $this->attr = $attr;
     $this->args = $args;
 }
コード例 #4
0
ファイル: FilterExpression.php プロジェクト: nramenta/flow
 public function __construct($node, $filters, $autoEscape, $line)
 {
     parent::__construct($line);
     $this->node = $node;
     $this->filters = $filters;
     $this->autoEscape = $autoEscape;
 }
コード例 #5
0
ファイル: StringExpression.php プロジェクト: nramenta/flow
 public function __construct($value, $line)
 {
     parent::__construct($line);
     $this->value = $value;
 }
コード例 #6
0
ファイル: NameExpression.php プロジェクト: nramenta/flow
 public function __construct($name, $line)
 {
     parent::__construct($line);
     $this->name = $name;
 }
コード例 #7
0
ファイル: CompareExpression.php プロジェクト: nramenta/flow
 public function __construct($expr, $ops, $line)
 {
     parent::__construct($line);
     $this->expr = $expr;
     $this->ops = $ops;
 }
コード例 #8
0
ファイル: ArrayExpression.php プロジェクト: nramenta/flow
 public function __construct($elements, $line)
 {
     parent::__construct($line);
     $this->elements = $elements;
 }
コード例 #9
0
ファイル: BinaryExpression.php プロジェクト: nramenta/flow
 public function __construct($left, $right, $line)
 {
     parent::__construct($line);
     $this->left = $left;
     $this->right = $right;
 }