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 1.2.2 spec defined the parsing algorithm to be very similar to a PEG. One significant difference is that the spec grammar uses a negative lookbehind, which is not part of the PEG model. This lookbehind is used only to ensure that the string # cannot appear in a plain scalar.
In 1.2.1:
[130] ns-plain-char(c) ::= ( ns-plain-safe(c) - “:” - “#” )
| ( /* An ns-char preceding */ “#” )
| ( “:” /* Followed by an ns-plain-safe(c) */ )
The 1.2.2 spec defined the parsing algorithm to be very similar to a PEG. One significant difference is that the spec grammar uses a negative lookbehind, which is not part of the PEG model. This lookbehind is used only to ensure that the string
#
cannot appear in a plain scalar.In 1.2.1:
In 1.2.2, we formalized this as:
I think we can avoid the lookbehind by adding
[ lookahead ≠ '#' ]
in a couple of places instead.The text was updated successfully, but these errors were encountered: