I noticed some differences between `IrTextDumpHand...
# compiler
r
I noticed some differences between
IrTextDumpHandler
and `IrPrettyKotlinDumpHandler`: • top level generated declarations aren’t included in
IrTextDumpHandler
, but are in
IrPrettyKotlinDumpHandler
• additional files (provided by
AdditionalSourceProvider
) are excluded from
IrPrettyKotlinDumpHandler
, but not from
IrTextDumpHandler
I am missing some kind of config, or are these differences expected?
d
It is expected
r
So in order to test the generation of top level declarations you would need
IrPrettyKotlinDumpHandler
, rigth? In that case is there any reason to use
IrTextDumpHandler
over
IrPrettyKotlinDumpHandler
?
d
So in order to test the generation of top level declarations you would need
IrPrettyKotlinDumpHandler
, rigth?
Probably yes
In that case is there any reason to use
IrTextDumpHandler
over
IrPrettyKotlinDumpHandler
?
Except for case with top-level declarations it's more about personal preference I personally like regular dumps more, as they much more informative
r
I personally like regular dumps more, as they much more informative
Yeah agreed. In that case using both might be the best.