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
Experimental elision feature fix: Preserve metadata on sets to make it work with feature (#225)
* preserve metadata on sets to ensure ellision works w/ them
* add TODO to show that I don't understand the ellision feature
For example, with `(match? [#{2}] [#{1 2}])` it currently gives
`[#{(unexpected 1)} ...]`
This feels misleading to me because there aren't more elements in the
vector that are being elided.
It should be more like `[#{(unexpected 1) ...}]` or at worst
something like `[#{(unexpected 1) ...} ...]`
0 commit comments