compileDebug() final public method

Compiles the expression tree into debug code.
final public compileDebug ( ) : string
return string
コード例 #1
0
ファイル: MixedType.php プロジェクト: timetoogo/pinq
 protected function unsupported(O\Expression $expression, $message, array $formatValues = [])
 {
     return new TypeException('Type %s does not support expression \'%s\': %s', $this->identifier, $expression->compileDebug(), vsprintf($message, $formatValues));
 }