mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Remove use of unstable box syntax.
http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax.
This commit is contained in:
parent
a5100e3c78
commit
aa15dc269f
270 changed files with 580 additions and 514 deletions
|
@ -64,7 +64,7 @@ impl Permissions {
|
|||
}
|
||||
|
||||
pub fn new(global: &GlobalScope) -> DomRoot<Permissions> {
|
||||
reflect_dom_object(box Permissions::new_inherited(),
|
||||
reflect_dom_object(Box::new(Permissions::new_inherited()),
|
||||
global,
|
||||
PermissionsBinding::Wrap)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue