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
* Make sure the extrators does not match classes. This should be done using reflection.
* Do not match `'{null}` to avoid accidental NPEs.
* Do not match `'{}` as there is no value to extract.
```diff
- case Const(null) =>
+ case '{null} =>
- case Const(()) =>
+ case '{} =>
```
We specialize use the old, faster, implemtation for `Unliftable` as there it it correct by construction of the available `Unliftable`s.
0 commit comments