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
I think the main source of the problem is production rule 200 in token.hs
It is a slightly improved version of the grammar production rule 200 in YAML 1.2 spec but still, some tweaks in this rule are required to fix this error.
For this example, it fails because we are not able to parse !!map as we are not able to detect s-l-comments in the look-ahead.
TODO: Review the definition of s_l_comments
https://matrix.yaml.io/details/9KAX.html doesn't pass as of HsYAML-0.1.2.0 specifically because of
which
yaml2token
decodes asin other words, parsing chokes on the
!!map
tokenTODO: review YAML 1.2 spec
The text was updated successfully, but these errors were encountered: