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
top-level = top-group
;; This fails to parse with the newline after the "=>"
top-group //= (identifier-a =>
int)
;; It parses without the newline, or if the newline is before the
;; arrow.
top-group //= (identifier-b => int)
top-group //= (identifier-c
=> int)
identifier-a = 1
identifier-b = 2
identifier-c = 3
The first top-group declaration cause a parse error. It seems to require both using an identifier as the key, and having the newline after the arrow. It is easy to work around by either moving the arrow to the new line, or just joining the lines.
In the following block of CDDL:
The first
top-group
declaration cause a parse error. It seems to require both using an identifier as the key, and having the newline after the arrow. It is easy to work around by either moving the arrow to the new line, or just joining the lines.The text was updated successfully, but these errors were encountered: