-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
A-fmtArea: FormatterArea: FormatterE-UnknownT-commentsComments in formatting and rhai sourceComments in formatting and rhai sourceenhancement
Description
Format this:
let file = external::load_file(); foo::bar::hello(); let a = foo::bar::hello;
// We can access nested modules defined inline as well.
nested::inner::need::to::go_deeper::YEAH;yields this:
let file = external::load_file();
// We can access nested modules defined inline as well.
foo::bar::hello();
// We can access nested modules defined inline as well.
let a = foo::bar::hello;
// We can access nested modules defined inline as well.
nested::inner::need::to::go_deeper::YEAH;The comment on the following line is duplicated.
Metadata
Metadata
Assignees
Labels
A-fmtArea: FormatterArea: FormatterE-UnknownT-commentsComments in formatting and rhai sourceComments in formatting and rhai sourceenhancement