Closed MaybeJustJames closed 4 years ago
This causes the comment to be parsed as part of the next element.
"""[ aaa,# A comment bbb, # a dumb comment ccc ]"""
is parsed as:
List_ [String_ "aaa",String_ "# A comment\n bbb",String_ "ccc"]
but should be parsed as:
List_ [String_ "aaa",String_ "bbb",String_ "ccc"]
This causes the comment to be parsed as part of the next element.
is parsed as:
but should be parsed as: