… and 'cargo test', etc. Include Servo and its unit tests, but not Stylo because that would try to compile the style crate with incompatible feature flags: https://github.com/rust-lang/cargo/issues/4463 `workspace.default-members` was added in https://github.com/rust-lang/cargo/pull/4743. Older Cargo versions ignore it. Source-Repo: https://github.com/servo/servo Source-Revision: df68eea3f21cc3bbf24d5bbb66be42c4e3a9e427
28 lines
838 B
Rust
28 lines
838 B
Rust
/* 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;
|
|
|
|
use proc_macro::{TokenStream, quote};
|
|
use std::iter;
|
|
|
|
#[proc_macro_attribute]
|
|
pub fn dom_struct(args: TokenStream, input: TokenStream) -> TokenStream {
|
|
if !args.is_empty() {
|
|
panic!("#[dom_struct] takes no arguments");
|
|
}
|
|
let attributes = quote! {
|
|
#[derive(DenyPublicFields, DomObject, JSTraceable, MallocSizeOf)]
|
|
#[must_root]
|
|
#[repr(C)]
|
|
};
|
|
|
|
// Work around https://github.com/rust-lang/rust/issues/46489
|
|
let attributes = attributes.to_string().parse().unwrap();
|
|
|
|
iter::once(attributes).chain(iter::once(input)).collect()
|
|
}
|