[Yaml] reverted previous commit

This commit is contained in:
Fabien Potencier 2010-03-24 12:10:26 +01:00
parent 2dc36191d1
commit a248fc133b
2 changed files with 5 additions and 30 deletions

View File

@ -300,9 +300,12 @@ class Parser
while ($this->moveToNextLine()) while ($this->moveToNextLine())
{ {
if ($this->isCurrentLineBlank()) if ($this->isCurrentLineEmpty())
{ {
$data[] = substr($this->currentLine, $newIndent); if ($this->isCurrentLineBlank())
{
$data[] = substr($this->currentLine, $newIndent);
}
continue; continue;
} }

View File

@ -143,31 +143,3 @@ yaml: |
0123 0123
php: | php: |
array('foo' => "0123\n") array('foo' => "0123\n")
---
test: Comments in folded scalars
brief: Comments in folded scalars should be kept as is
yaml: |
# comment
foo: |
# comment
bar
bar:
# comment
foo: bar # comment
bar: |
# comment
foo
foobar:
foo: |
# comment
bar
# comment
php: |
array(
'foo' => "# comment\nbar\n",
'bar' => array(
'foo' => 'bar',
'bar' => "# comment\nfoo\n",
'foobar' => array('foo' => "# comment\nbar\n")
)
)