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
{{ message }}
This repository was archived by the owner on Jun 15, 2023. It is now read-only.
Thanks to the recent clean up, there is no need to apply a ppx for method call.
obj["say"]was currently compiled intoobj##say, and transformed again in the compiler into Pexp_send with some wrappers.This is not needed any more, it can be translated into
obj#saywithout any post-processing.To finish this, we should also implement the printer logic for
Pexp_send