/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! Attributes this crate provides:
//!
//! - `#[derive(HeapSizeOf)]` : Auto-derives an implementation of `HeapSizeOf` for a struct or
//! enum.
extern crate syntax;
extern crate syntax_ext;
extern crate rustc_plugin;
use Registry;
use *;
use intern;
// Public for documentation to show up
/// Handles the auto-deriving for `#[derive(HeapSizeOf)]`