You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error Unexpected token `NewLine` while parsing inline table is emitted.
ParseKeyValue sets _hideNewLine = false. It then goes into ParseValue, which calls ParseInlineTable and inherits the value of _hideNewLine. It looks like ParseInlineTable should explicitly set it to true.
This isn't caught by any tests as #b2377a1 only added tests for inline arrays.
The text was updated successfully, but these errors were encountered:
This is the test file:
The error
Unexpected token `NewLine` while parsing inline table
is emitted.ParseKeyValue
sets_hideNewLine = false
. It then goes intoParseValue
, which callsParseInlineTable
and inherits the value of_hideNewLine
. It looks likeParseInlineTable
should explicitly set it to true.This isn't caught by any tests as #b2377a1 only added tests for inline arrays.
The text was updated successfully, but these errors were encountered: