From fb595d82022557ed11e07b3a98da9dc84b46c870 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sun, 4 Jan 2015 11:56:33 +0100 Subject: [PATCH] Re-export devtools enums. --- components/devtools_traits/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) 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;