aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools_traits/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/devtools_traits/lib.rs')
-rw-r--r--components/devtools_traits/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs
index b22b04f9ac1..6b6bb91f987 100644
--- a/components/devtools_traits/lib.rs
+++ b/components/devtools_traits/lib.rs
@@ -6,6 +6,7 @@
#![crate_type = "rlib"]
#![allow(non_snake_case)]
+#![feature(globs)]
extern crate "msg" as servo_msg;
extern crate serialize;
@@ -16,6 +17,10 @@ extern crate "util" as servo_util;
/// The traits are here instead of in script so that the devtools crate can be
/// modified independently of the rest of Servo.
+pub use self::DevtoolsControlMsg::*;
+pub use self::DevtoolScriptControlMsg::*;
+pub use self::EvaluateJSReply::*;
+
use serialize::{Decodable, Decoder};
use servo_msg::constellation_msg::PipelineId;
use servo_util::str::DOMString;