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
Right now, RepeatedParser, RepeatedOnceParser, RepeatedSeperatedParser, and RepeatedSeperatedOnceParser all promise to return a Sequence[Output]. This should promise the specific type returned, in case the caller wants it. This is is currently a list[Output], but we may want to change it to a tuple[Output, ...] when SequentialParser is changed to return a tuple.
The text was updated successfully, but these errors were encountered:
Right now,
RepeatedParser
,RepeatedOnceParser
,RepeatedSeperatedParser
, andRepeatedSeperatedOnceParser
all promise to return aSequence[Output]
. This should promise the specific type returned, in case the caller wants it. This is is currently alist[Output]
, but we may want to change it to atuple[Output, ...]
whenSequentialParser
is changed to return a tuple.The text was updated successfully, but these errors were encountered: