17c8ac5440
This makes it a bit more apparent, in profiler snapshots, where parameter types are really needed. Also, hopefully it will improve performance somewhat in cases where types are not needed. For example, before this change about 1/3 of the time of `DefaultArgumentStubGenerator.lower` on JVM was actually computing types of parameters from dependencies, even though the actual types were not needed, only the presence of defaultValue was used. This made it the most time-consuming lowering phase on JVM. After this change, default argument lowering is thus 50% faster, however this time is in part distributed among other lowerings that visit the whole override hierarchy for all methods and really need the types of parameters, e.g. BridgeLowering, SyntheticAccessorLowering. So the profiler snapshots are now more "honest".