diff options
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 af6d3b2a9c0..77ff99aab97 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -19,6 +19,7 @@ #![feature(plugin)] #![feature(slice_patterns)] #![feature(stmt_expr_attributes)] +#![feature(question_mark)] #![deny(unsafe_code)] #![allow(non_snake_case)] @@ -87,6 +88,7 @@ extern crate webrender_traits; extern crate websocket; extern crate xml5ever; +pub mod bluetooth_blacklist; pub mod clipboard_provider; pub mod cors; mod devtools; |