Open Kyuuhachi opened 1 year ago
From what I can tell, [!tag] is supposed to be valid syntax. However, trying to parse it, we get
[!tag]
Error { kind: SCANNER, problem: "did not find expected whitespace or line break", problem_mark: Mark { line: 1, column: 6, }, context: "while scanning a tag", context_mark: Mark { line: 1, column: 2, }, }
Adding a trailing space, newline, or comma makes it parse correctly:
[!tag,]
is parsed as
Sequence [ TaggedValue { tag: !tag, value: Null, }, ]
From what I can tell,
[!tag]
is supposed to be valid syntax. However, trying to parse it, we getAdding a trailing space, newline, or comma makes it parse correctly:
is parsed as