mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
Revert "fixup! Move PropertyBitField to a syntax extension."
This reverts commit 653f257029
.
This commit is contained in:
parent
a8b7b193f5
commit
cc03e4f9e2
1 changed files with 1 additions and 5 deletions
|
@ -92,12 +92,10 @@ fn expand_bit_struct(cx: &mut ExtCtxt, sp: Span, name: ast::Ident, tts: Vec<ast:
|
||||||
let additional_impl = quote_item!(&*cx,
|
let additional_impl = quote_item!(&*cx,
|
||||||
impl $name {
|
impl $name {
|
||||||
#[allow(non_snake_case_functions)]
|
#[allow(non_snake_case_functions)]
|
||||||
#[inline]
|
|
||||||
pub fn $field(&self) -> bool {
|
pub fn $field(&self) -> bool {
|
||||||
(self.storage[$word] & (1 << $bit)) != 0
|
(self.storage[$word] & (1 << $bit)) != 0
|
||||||
}
|
}
|
||||||
#[allow(non_snake_case_functions)]
|
#[allow(non_snake_case_functions)]
|
||||||
#[inline]
|
|
||||||
pub fn $setter(&mut self, new_value: bool) {
|
pub fn $setter(&mut self, new_value: bool) {
|
||||||
if new_value {
|
if new_value {
|
||||||
self.storage[$word] |= 1 << $bit
|
self.storage[$word] |= 1 << $bit
|
||||||
|
@ -120,8 +118,6 @@ fn expand_bit_struct(cx: &mut ExtCtxt, sp: Span, name: ast::Ident, tts: Vec<ast:
|
||||||
// Re-wrap.
|
// Re-wrap.
|
||||||
let impl_def = box(GC) impl_def;
|
let impl_def = box(GC) impl_def;
|
||||||
|
|
||||||
// FIXME(SimonSapin) replace this with something from libsyntax
|
|
||||||
// if/when https://github.com/rust-lang/rust/issues/16723 is fixed
|
|
||||||
struct MacItems {
|
struct MacItems {
|
||||||
items: Vec<Gc<ast::Item>>
|
items: Vec<Gc<ast::Item>>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue