diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-03-08 18:49:55 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-03-08 18:49:55 +0100 |
commit | 9fbfb1909cde6225279730f123f312c270155d19 (patch) | |
tree | 808832ec3ca35be7aea6136e2fb019b2ba50dc26 /src/components/script/dom/testbinding.rs | |
parent | 4b061dc43d5a0d0f9850e0512eed28bfb8476e7b (diff) | |
download | servo-9fbfb1909cde6225279730f123f312c270155d19.tar.gz servo-9fbfb1909cde6225279730f123f312c270155d19.zip |
Move JSVal into the jsval module.
Diffstat (limited to 'src/components/script/dom/testbinding.rs')
-rw-r--r-- | src/components/script/dom/testbinding.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/script/dom/testbinding.rs b/src/components/script/dom/testbinding.rs index 634e569791f..630e457fb87 100644 --- a/src/components/script/dom/testbinding.rs +++ b/src/components/script/dom/testbinding.rs @@ -9,7 +9,8 @@ use dom::window::Window; use servo_util::str::DOMString; use js::JSVAL_NULL; -use js::jsapi::{JSVal, JSContext}; +use js::jsapi::JSContext; +use js::jsval::JSVal; #[deriving(Encodable)] pub struct TestBinding { |