Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

rustup #65

Merged
merged 1 commit into from
Feb 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions src/attr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ impl<F> AttrBuilder<F>
self.callback.invoke(attr)
}

pub fn build_meta_item_(self, item: ast::MetaItem_) -> F::Result {
pub fn build_meta_item_(self, item: ast::MetaItemKind) -> F::Result {
let item = P(respan(self.span, item));
self.build_meta_item(item)
}

pub fn word<T>(self, word: T) -> F::Result
where T: ToInternedString
{
self.build_meta_item_(ast::MetaWord(word.to_interned_string()))
self.build_meta_item_(ast::MetaItemKind::Word(word.to_interned_string()))
}

pub fn list<T>(self, word: T) -> AttrListBuilder<Self>
Expand Down Expand Up @@ -153,12 +153,12 @@ impl<F> Invoke<P<ast::MetaItem>> for AttrBuilder<F>
}
}

impl<F> Invoke<ast::MetaItem_> for AttrBuilder<F>
impl<F> Invoke<ast::MetaItemKind> for AttrBuilder<F>
where F: Invoke<ast::Attribute>,
{
type Result = F::Result;

fn invoke(self, item: ast::MetaItem_) -> F::Result {
fn invoke(self, item: ast::MetaItemKind) -> F::Result {
self.build_meta_item_(item)
}
}
Expand Down Expand Up @@ -199,7 +199,7 @@ impl<F> AttrListBuilder<F>
}

pub fn with_meta_items_<I>(self, iter: I) -> Self
where I: IntoIterator<Item=ast::MetaItem_>,
where I: IntoIterator<Item=ast::MetaItemKind>,
{
let iter = iter.into_iter();
let span = self.span;
Expand All @@ -211,7 +211,7 @@ impl<F> AttrListBuilder<F>
self
}

pub fn with_meta_item_(self, item: ast::MetaItem_) -> Self {
pub fn with_meta_item_kind(self, item: ast::MetaItemKind) -> Self {
let span = self.span;
self.with_meta_item(P(respan(span, item)))
}
Expand All @@ -221,13 +221,13 @@ impl<F> AttrListBuilder<F>
T: ToInternedString,
{
let iter = iter.into_iter();
self.with_meta_items_(iter.map(|word| ast::MetaWord(word.to_interned_string())))
self.with_meta_items_(iter.map(|word| ast::MetaItemKind::Word(word.to_interned_string())))
}

pub fn word<T>(self, word: T) -> Self
where T: ToInternedString,
{
self.with_meta_item_(ast::MetaWord(word.to_interned_string()))
self.with_meta_item_kind(ast::MetaItemKind::Word(word.to_interned_string()))
}

pub fn list<T>(self, name: T) -> AttrListBuilder<Self>
Expand All @@ -246,7 +246,7 @@ impl<F> AttrListBuilder<F>
}

pub fn build(self) -> F::Result {
let item = respan(self.span, ast::MetaList(self.name, self.items));
let item = respan(self.span, ast::MetaItemKind::List(self.name, self.items));
self.callback.invoke(P(item))
}
}
Expand All @@ -261,13 +261,13 @@ impl<F> Invoke<P<ast::MetaItem>> for AttrListBuilder<F>
}
}

impl<F> Invoke<ast::MetaItem_> for AttrListBuilder<F>
impl<F> Invoke<ast::MetaItemKind> for AttrListBuilder<F>
where F: Invoke<P<ast::MetaItem>>,
{
type Result = Self;

fn invoke(self, item: ast::MetaItem_) -> Self {
self.with_meta_item_(item)
fn invoke(self, item: ast::MetaItemKind) -> Self {
self.with_meta_item_kind(item)
}
}

Expand All @@ -278,12 +278,11 @@ pub struct AttrNameValueBuilder<F> {
name: token::InternedString,
}

impl<F: Invoke<ast::MetaItem_>> Invoke<P<ast::Lit>> for AttrNameValueBuilder<F> {
impl<F: Invoke<ast::MetaItemKind>> Invoke<P<ast::Lit>> for AttrNameValueBuilder<F> {
type Result = F::Result;

fn invoke(self, value: P<ast::Lit>) -> F::Result {
let item = ast::MetaNameValue(self.name, (*value).clone());
let item = ast::MetaItemKind::NameValue(self.name, (*value).clone());
self.callback.invoke(item)
}
}

4 changes: 2 additions & 2 deletions src/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ impl<F> BlockBuilder<F>
callback: callback,
span: DUMMY_SP,
stmts: Vec::new(),
block_check_mode: ast::BlockCheckMode::DefaultBlock,
block_check_mode: ast::BlockCheckMode::Default,
}
}

Expand All @@ -42,7 +42,7 @@ impl<F> BlockBuilder<F>

pub fn unsafe_(mut self) -> Self {
let source = ast::UnsafeSource::CompilerGenerated;
self.block_check_mode = ast::BlockCheckMode::UnsafeBlock(source);
self.block_check_mode = ast::BlockCheckMode::Unsafe(source);
self
}

Expand Down
Loading