Thanks to the recent clean up, there is no need to apply a ppx for method call. `obj["say"]` was currently compiled into `obj##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#say` without any post-processing. To finish this, we should also implement the printer logic for `Pexp_send`
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