getConstructor() public method

Gets the supplied expression matches the type's constructor.
public getConstructor ( NewExpression $expression ) : Pinq\Analysis\IConstructor
$expression Pinq\Expressions\NewExpression
return Pinq\Analysis\IConstructor
コード例 #1
0
ファイル: Type.php プロジェクト: timetoogo/pinq
 public function getConstructor(O\NewExpression $expression)
 {
     return $this->parentType->getConstructor($expression);
 }