In this post Find all implicits I've seen that there is an -Xlog-implicit-conversions
option for scalac which shows implicit applications during compilation. There is also -Xprint:<phase>
option which shows program code after a specified compilation phase.
But is it possible to somehow output the human-readable code after all syntactic sugar translations and implicit conversions (applications) are made?
Such ability may be useful if you are optimizing some part of the code for performance.