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 current re-sugaring is ad-hoc and we can improve it for example, given
let f (x:obj) (y:obj) = x |> string
Before this fix the following expression decompilation
<@ 2 |> f "2" @> |> decompile
would be
"2 |> let x = "2" in fun y -> f x y"
due to coercion throwing off our pattern matching. But after this fix we'll have
"2 |> f "2""
Original issue reported on code.google.com by stephen....@gmail.com on 5 Jul 2011 at 3:22
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
stephen....@gmail.com
on 5 Jul 2011 at 3:22The text was updated successfully, but these errors were encountered: