getConstructor() 공개 메소드

Gets the supplied expression matches the type's constructor.
public getConstructor ( NewExpression $expression ) : Pinq\Analysis\IConstructor
$expression Pinq\Expressions\NewExpression
리턴 Pinq\Analysis\IConstructor
예제 #1
0
파일: Type.php 프로젝트: timetoogo/pinq
 public function getConstructor(O\NewExpression $expression)
 {
     return $this->parentType->getConstructor($expression);
 }