This commit is contained in:
Felix Krause 2017-01-13 16:19:04 +01:00
parent 538a2d2deb
commit b99fa8df7a
1 changed files with 8 additions and 1 deletions

View File

@ -592,17 +592,24 @@ parserState blockObjectStart:
c.advance()
state = scalarEnd
of ltScalarPart:
let needsValueIndicator = c.level.kind == fplMapKey
result = c.handleBlockItemStart(e)
c.plainScalarStart = c.lex.curStartPos
while true:
c.advance()
case c.lex.cur
of ltIndentation:
if c.lex.indentation <= c.ancestry[^1].indentation: break
if c.lex.indentation <= c.ancestry[^1].indentation:
if needsValueIndicator and
c.lex.indentation == c.ancestry[^1].indentation:
raise c.generateError("Illegal multiline implicit key")
break
c.lex.newlines.inc()
of ltScalarPart: discard
of ltEmptyLine: c.lex.newlines.inc()
else: break
if needsValueIndicator and c.lex.cur != ltMapValInd:
raise c.generateError("Missing mapping value indicator (`:`)")
c.lex.newlines = 0
state = plainScalarEnd
stored = blockAfterObject