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
(Filing this mostly as a reminder after taking a quick look at the code)
A bunch of places materialize Python lists of tokens unnecessarily (by calling list() on some iterable).
This isn't a huge deal as we likely will never really need to deal with giant schemas, but it's unnecessary.
We should instead only do this if/when we ever need to (e.g. to maintain state for our additional parsing).
The text was updated successfully, but these errors were encountered:
(Filing this mostly as a reminder after taking a quick look at the code)
A bunch of places materialize Python lists of tokens unnecessarily (by calling
list()
on some iterable).This isn't a huge deal as we likely will never really need to deal with giant schemas, but it's unnecessary.
We should instead only do this if/when we ever need to (e.g. to maintain state for our additional parsing).
The text was updated successfully, but these errors were encountered: