MaybeJustJames / yaml

Work with YAML in Elm.
BSD 3-Clause "New" or "Revised" License
9 stars 5 forks source link

Fails to parse a record in an inline list #11

Open MaybeJustJames opened 4 years ago

MaybeJustJames commented 4 years ago

Given the input:

 [ '  hello  world  ' : 3 ]

I expect the parser to produce:

Ast.List_ [ Ast.Record_ (Dict.fromList [("  hello  world  ", Ast.Int_ 3)])]