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
Things like how Vec<impl FromPest> works today. FromPest is now set up such that implementations pull from the front of a cursor instead of only getting a single Pair; we should let pest-ast use this!
Basically, this is translating a silent rule from pest.
The struct attribute is temporary and bikeshedable. I don't want just the absence of a rule(..) attribute to mean that it's inline, though, as this is likely to lead to mistakenly leaving it out. The rule enum also still has to be provided somehow, as I don't think it can be inferred from children.
The text was updated successfully, but these errors were encountered:
Things like how
Vec<impl FromPest>
works today.FromPest
is now set up such that implementations pull from the front of a cursor instead of only getting a singlePair
; we should let pest-ast use this!Basically, this is translating a silent rule from pest.
becomes
The struct attribute is temporary and bikeshedable. I don't want just the absence of a
rule(..)
attribute to mean that it's inline, though, as this is likely to lead to mistakenly leaving it out. The rule enum also still has to be provided somehow, as I don't think it can be inferred from children.The text was updated successfully, but these errors were encountered: