diff options
author | GauriGNaik <gaurinaik.145@gmail.com> | 2015-10-26 11:31:28 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-11-25 18:28:30 -0500 |
commit | 996e9e06b2b57cfc7549eaba71cf1abbd746ca24 (patch) | |
tree | 892d7bde46bac071356c7a195c460c931e88cd1f /components/script/lib.rs | |
parent | 8efc954531d2c7491ea01b6e22c89e35c5cf434a (diff) | |
download | servo-996e9e06b2b57cfc7549eaba71cf1abbd746ca24.tar.gz servo-996e9e06b2b57cfc7549eaba71cf1abbd746ca24.zip |
Defined new trait ParseErrorReporter and added error_reporter member to ParserContext
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 0d0278f7172..4f1d9f66cd0 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -42,6 +42,7 @@ extern crate log; extern crate profile_traits; #[macro_use] extern crate style; +extern crate style_traits; #[macro_use] extern crate util; extern crate angle; @@ -90,6 +91,7 @@ mod mem; mod network_listener; pub mod page; pub mod parse; +pub mod reporter; #[allow(unsafe_code)] pub mod script_task; pub mod textinput; |