getValue() public method

public getValue ( ) : Expression
return Expression
示例#1
0
 public function visitArgument(O\ArgumentExpression $expression)
 {
     $this->walk($expression->getValue());
 }
 protected function visitArgument(ArgumentExpression $expression)
 {
     if ($expression->isUnpacked()) {
         throw new PinqDemoSqlException('Does not support argument unpacking');
     }
     $this->walk($expression->getValue());
 }