Пример #1
0
 public function __construct($file, $lineno, $type, $name, $sr_parent, $m_msgdecls)
 {
     parent::__construct($file, $lineno, $name);
     $this->type = $type;
     $this->sr_parent = $sr_parent;
     $this->m_msgdecls = $m_msgdecls;
 }
Пример #2
0
 public function __construct($file, $lineno, $sr_instance, $msgname, $rt)
 {
     parent::__construct($file, $lineno, null);
     $this->sr_instance = $sr_instance;
     $this->msgname = isset($msgname) && strlen($msgname) > 0 ? $msgname : null;
     $this->rt = $rt;
 }
Пример #3
0
 /**
  * Empty $stmts for no body, null for builtin message.
  */
 public function __construct($file, $lineno, $is_static, $returnspec, $name, $argspec, $stmts)
 {
     parent::__construct($file, $lineno, $name);
     $this->is_static = $is_static;
     $this->returnspec = $returnspec;
     $this->argspec = $argspec;
     $this->stmts = $stmts;
 }
Пример #4
0
 public function __construct($file, $lineno, $lvalue, $assign, $rvalue, $args)
 {
     parent::__construct($file, $lineno, null);
     $this->lvalue = $lvalue;
     $this->assign = $assign;
     $this->rvalue = $rvalue;
     $this->args = $args;
 }
Пример #5
0
 public function __construct($file, $lineno, $sr_ar)
 {
     parent::__construct($file, $lineno, null);
     $this->sr_ar = $sr_ar;
 }
Пример #6
0
 /**
  * $srm_ordered is an ordered array of CainSoftReference.  $srm_map is keyed by soft reference
  * unique_or_name string to a CainSoftReference.
  */
 public function __construct($file, $lineno, $sra_ordered, $srm_map)
 {
     parent::__construct($file, $lineno, null);
     $this->sra_ordered = $sra_ordered;
     $this->srm_map = $srm_map;
 }
Пример #7
0
 public function __construct($file, $lineno, $value)
 {
     parent::__construct($file, $lineno, null);
     $this->value = $value;
 }