예제 #1
0
 /**
  *
  * @param TokenStream $stream
  * @param int $indention
  * @return TokenStreamBuilder
  */
 public function addStream(TokenStream $stream, $indention = 1)
 {
     if ($indention > 0) {
         $stream->indent($indention);
     }
     $this->stream->append($stream);
     return $this;
 }