9f98f725cb
When the reformatted code doesn't contain the same quantity of comments as the original code, use the original code instead of the reformatted code. This is done for all expressions and `let` statements. This should be used at the finest grained level possible, to avoid that a small disappearing comment prevents a big chunk of code to be reformatted. Kind of fixes (avoid disappearing comments, but prevents a good formatting is such case) #285 #225 #563 #743
24 lines
1.1 KiB
Rust
24 lines
1.1 KiB
Rust
|
|
fn main() {
|
|
let constellation_chan =
|
|
Constellation::<layout::layout_task::LayoutTask,
|
|
script::script_task::ScriptTask>::start(compositor_proxy,
|
|
resource_task,
|
|
image_cache_task,
|
|
font_cache_task,
|
|
time_profiler_chan,
|
|
mem_profiler_chan,
|
|
devtools_chan,
|
|
storage_task,
|
|
supports_clipboard);
|
|
|
|
Quux::<ParamOne /* Comment 1 */, ParamTwo /* Comment 2 */>::some_func();
|
|
|
|
<*mut JSObject>::relocate(entry);
|
|
|
|
let x: Foo<A>;
|
|
let x: Foo/*::*/<A>;
|
|
}
|
|
|
|
fn op(foo: Bar, key: &[u8], upd: Fn(Option<&memcache::Item>, Baz) -> Result) -> MapResult {}
|