Format remaining files

This commit is contained in:
Pyfisch 2018-11-06 13:01:35 +01:00
parent bf47f90da6
commit cb07debcb6
252 changed files with 5944 additions and 3744 deletions

View file

@ -73,7 +73,8 @@ impl PerformanceEntryList {
name.as_ref().map_or(true, |name_| *e.name() == *name_) && entry_type
.as_ref()
.map_or(true, |type_| *e.entry_type() == *type_)
}).map(|e| e.clone())
})
.map(|e| e.clone())
.collect::<Vec<DomRoot<PerformanceEntry>>>();
res.sort_by(|a, b| {
a.start_time()
@ -284,7 +285,8 @@ impl Performance {
o.observer.callback(),
o.observer.entries(),
)
}).collect();
})
.collect();
// Step 7.3.
for o in observers.iter() {