f56bbd68d7
Similarly to how stub bodies are generated for functions in the kapt mode (see `BodyGenerator.generateFunctionBody`). This is more useful then not generating bodies at all, because otherwise in the -Xjvm-default=all/all-compatibility modes it would be difficult to differentiate functions with default implementations from the ones without (because they all would lack body and thus be generated as abstract into the resulting Java stub). The effect of this change is pretty minor, so there's no YT issue. But it fixes light analysis tests run with JVM_IR in `codegen/box/jvm8/defaults`, because now there's no difference between full analysis and light analysis for interfaces with default methods in new modes.