diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-05-27 22:53:01 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-06-03 07:14:21 +0530 |
commit | 13b4bcfbb7ce7a7337d28e30a8a6a2954dd14e50 (patch) | |
tree | 76a9dfd8f0995a439531c0d99969c7d7aee9504b /components/plugins/lib.rs | |
parent | 5447d2af3d4e73eeece380f08ffd9e22d1d454c3 (diff) | |
download | servo-13b4bcfbb7ce7a7337d28e30a8a6a2954dd14e50.tar.gz servo-13b4bcfbb7ce7a7337d28e30a8a6a2954dd14e50.zip |
Remove all Arc-less ignores, force reasons, ignore_heap_size_of
Diffstat (limited to 'components/plugins/lib.rs')
-rw-r--r-- | components/plugins/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index fd8fdd615b7..8f9f698f1d8 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -31,8 +31,8 @@ use syntax::parse::token::intern; // Public for documentation to show up /// Handles the auto-deriving for `#[jstraceable]` pub mod jstraceable; -/// Handles the auto-deriving for `#[heapsize]` -pub mod heapsize; +/// Handles the auto-deriving for `#[derive(HeapSizeOf)]` +pub mod heap_size; /// Autogenerates implementations of Reflectable on DOM structs pub mod reflector; pub mod lints; @@ -45,7 +45,7 @@ pub fn plugin_registrar(reg: &mut Registry) { reg.register_syntax_extension(intern("dom_struct"), MultiModifier(box jstraceable::expand_dom_struct)); reg.register_syntax_extension(intern("jstraceable"), MultiDecorator(box jstraceable::expand_jstraceable)); reg.register_syntax_extension(intern("_generate_reflector"), MultiDecorator(box reflector::expand_reflector)); - reg.register_syntax_extension(intern("derive_HeapSizeOf"), MultiDecorator(box heapsize::expand_heapsize)); + reg.register_syntax_extension(intern("derive_HeapSizeOf"), MultiDecorator(box heap_size::expand_heap_size)); reg.register_macro("to_lower", casing::expand_lower); reg.register_macro("to_upper", casing::expand_upper); reg.register_lint_pass(box lints::transmute_type::TransmutePass as LintPassObject); |