diff options
author | Sudarsan <sudar.theone@gmail.com> | 2020-08-28 21:01:09 +0800 |
---|---|---|
committer | Sudarsan <sudar.theone@gmail.com> | 2020-08-28 21:01:09 +0800 |
commit | 4afe49d7768048697d7540e40970127f646c834e (patch) | |
tree | cf44a57ef722a0ca374b3311a790ad5afb509559 /components/script/dom/globalscope.rs | |
parent | f8c9ee4eff1ae7a72037e16f2aa97ad6bb69da4e (diff) | |
download | servo-4afe49d7768048697d7540e40970127f646c834e.tar.gz servo-4afe49d7768048697d7540e40970127f646c834e.zip |
ran mach tidy
Diffstat (limited to 'components/script/dom/globalscope.rs')
-rw-r--r-- | components/script/dom/globalscope.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/globalscope.rs b/components/script/dom/globalscope.rs index 07fea65a79a..56adc2b8d90 100644 --- a/components/script/dom/globalscope.rs +++ b/components/script/dom/globalscope.rs @@ -2594,8 +2594,7 @@ impl GlobalScope { rooted!(in(*cx) let mut compiled_script = std::ptr::null_mut::<JSScript>()); match code { SourceCode::Text(text_code) => { - let options = - CompileOptionsWrapper::new(*cx, filename, line_number); + let options = CompileOptionsWrapper::new(*cx, filename, line_number); debug!("compiling dom string"); compiled_script.set(Compile1( |