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
The `IsStatement` test before this commit
treated `Typed(Unapply)` nodes as statements, which is
not correct since they are patterns. They must pass
the `IsUnapply` test and fail `IsStatement` test.
However since they do not fail `IsStatement` test,
the `transformTree` method of `TreeMap` incorrectly
calls `transformStatement` on a `Typed(Unapply)`.
This commit makes the `IsStatement` test treat
the trees in question correctly.
0 commit comments