Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends Pinq\Analysis\Typed, implements Pinq\Analysis\ITypeOperation
コード例 #1
0
ファイル: Method.php プロジェクト: timetoogo/pinq
 public function __construct(ITypeSystem $typeSystem, $sourceType, \ReflectionMethod $reflection, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $reflection->getName();
     $this->reflection = $reflection;
 }
コード例 #2
0
ファイル: Constructor.php プロジェクト: timetoogo/pinq
 public function __construct(ITypeSystem $typeSystem, $type, \ReflectionMethod $reflection = null)
 {
     parent::__construct($typeSystem, $type, $type);
     $this->reflection = $reflection;
 }
コード例 #3
0
ファイル: Field.php プロジェクト: timetoogo/pinq
 public function __construct(ITypeSystem $typeSystem, $sourceType, $name, $isStatic, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $name;
     $this->isStatic = $isStatic;
 }
コード例 #4
0
ファイル: Indexer.php プロジェクト: timetoogo/pinq
 public function __construct(ITypeSystem $typeSystem, $sourceType, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
 }