예제 #1
0
 public function testEatChars()
 {
     $buffer = new Buffer("abcdef");
     $buffer->nextLine();
     $chars = $buffer->eatChars(2);
     $this->assertSame("ab", $chars);
     $this->assertSame("cdef", $buffer->getLine());
     $this->assertSame(3, $buffer->getColumn());
     $chars = $buffer->eatChars(5);
     $this->assertSame("cdef", $chars);
     $this->assertSame("", $buffer->getLine());
     $this->assertSame(7, $buffer->getColumn());
 }
예제 #2
0
 public function testInjectLines()
 {
     $buffer = new Buffer("    abc\n    def\nghi");
     $buffer->injectLines(["  jkl", "  mop"], 1);
     $this->assertTrue($buffer->nextLine());
     //this skip magic comment
     $this->assertSame("  jkl", $buffer->getLine());
     $this->assertSame(1, $buffer->getLineno());
     $this->assertSame(1, $buffer->getColumn());
     $this->assertTrue($buffer->nextLine());
     $this->assertSame("  mop", $buffer->getLine());
     $this->assertSame(2, $buffer->getLineno());
     $this->assertTrue($buffer->nextLine());
     $this->assertSame("    abc", $buffer->getLine());
     $this->assertSame(3, $buffer->getLineno());
     $this->assertTrue($buffer->nextLine());
     $this->assertSame("    def", $buffer->getLine());
     $this->assertSame(4, $buffer->getLineno());
     $this->assertTrue($buffer->nextLine());
     $this->assertSame("ghi", $buffer->getLine());
     $this->assertSame(5, $buffer->getLineno());
     $this->assertFalse($buffer->nextLine());
 }
 /**
  * Handles HAML multiline syntax
  *
  * Any line terminated by ` |` is concatenated with the following lines
  * also terminated by ` |`. Empty or whitespace-only lines are ignored. The
  * current line is replaced by the resulting line in $buf.
  *
  * @param Buffer $buf
  */
 public function handleMultiline($buf)
 {
     $line = $buf->getLine();
     if (!$this->isMultiline($line)) {
         return;
     }
     $line = substr(rtrim($line), 0, -1);
     while ($next = $buf->peekLine()) {
         if (trim($next) == '') {
             $buf->nextLine();
             continue;
         }
         if (!$this->isMultiline($next)) {
             break;
         }
         $line .= substr(trim($next), 0, -1);
         $buf->nextLine();
     }
     $buf->replaceLine($line);
 }
예제 #4
0
파일: Parser.php 프로젝트: gunderjt/MtHaml
 protected function parseFilter(Buffer $buf)
 {
     if (!$buf->match('/:(.*)/A', $match)) {
         return null;
     }
     $node = new Filter($match['pos'][0], $match[1]);
     while (null !== ($next = $buf->peekLine())) {
         $indent = '';
         if ('' !== trim($next)) {
             $indent = $this->indent->getString(1, $next);
             if ('' === $indent) {
                 break;
             }
             if (strpos($next, $indent) !== 0) {
                 break;
             }
         }
         $buf->nextLine();
         $buf->eatChars(strlen($indent));
         $str = $this->parseInterpolatedString($buf, false);
         $node->addChild(new Statement($str->getPosition(), $str));
     }
     return $node;
 }