mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Make #[dom_struct] a proc_macro attribute
This commit is contained in:
parent
64885c4213
commit
31e9d81c0f
251 changed files with 298 additions and 35 deletions
28
components/dom_struct/lib.rs
Normal file
28
components/dom_struct/lib.rs
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* 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/. */
|
||||
|
||||
#![feature(proc_macro)]
|
||||
|
||||
extern crate proc_macro;
|
||||
#[macro_use] extern crate quote;
|
||||
|
||||
use proc_macro::TokenStream;
|
||||
|
||||
#[proc_macro_attribute]
|
||||
pub fn dom_struct(args: TokenStream, input: TokenStream) -> TokenStream {
|
||||
if !args.to_string().is_empty() {
|
||||
panic!("#[dom_struct] takes no arguments");
|
||||
}
|
||||
expand_string(&input.to_string()).parse().unwrap()
|
||||
}
|
||||
|
||||
fn expand_string(input: &str) -> String {
|
||||
let mut tokens = quote! {
|
||||
#[derive(DenyPublicFields, DomObject, HeapSizeOf, JSTraceable)]
|
||||
#[must_root]
|
||||
#[repr(C)]
|
||||
};
|
||||
tokens.append(input);
|
||||
tokens.to_string()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue