diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-04 11:56:33 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-04 16:07:01 +0100 |
commit | fb595d82022557ed11e07b3a98da9dc84b46c870 (patch) | |
tree | 29be11cc2bbff35258a628bc958e115fb807f79a | |
parent | 986d2b822c111aa051e37803da31db1ebc0a8cd5 (diff) | |
download | servo-fb595d82022557ed11e07b3a98da9dc84b46c870.tar.gz servo-fb595d82022557ed11e07b3a98da9dc84b46c870.zip |
Re-export devtools enums.
-rw-r--r-- | components/devtools_traits/lib.rs | 5 |
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; |