Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generalize MacExpr / MacPat / MacItems #18814

Closed
wants to merge 1 commit into from
Closed
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
41 changes: 41 additions & 0 deletions src/libsyntax/ext/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,47 @@ pub trait MacResult {
}
}

/// Single type implementing MacResult with Option fields for all the types
/// MacResult can return, and a Default impl that fills in None.
pub struct MacGeneral {
expr: Option<P<ast::Expr>>,
pat: Option<P<ast::Pat>>,
items: Option<SmallVector<P<ast::Item>>>,
methods: Option<SmallVector<P<ast::Method>>>,
def: Option<MacroDef>
}
impl MacGeneral {
pub fn new(expr: Option<P<ast::Expr>>,
pat: Option<P<ast::Pat>>,
items: Option<SmallVector<P<ast::Items>>>,
methods: Option<SmallVector<P<ast::Method>>>,
def: Option<MacroDef>)
-> Box<MacResult+'static> {
box MacGeneral { expr: expr, pat: pat, items: items,
methods: methods, def: def } as Box<MacResult+'static>
}
pub fn Default() -> Box<MacResult+'static> {
box MacGeneral { expr: None, pat: None, items: None
methods: None, def: None} as Box<MacResult+'static>
}
}
impl MacResult for MacGeneral {
fn make_expr(self: Box<MacGeneral>) -> Option<P<ast::Expr>> {
self.expr
}
fn make_pat(self: Box<MacGeneral>) -> Option<P<ast::Pat>> {
self.pat
}
fn make_items(self: Box<MacGeneral>) -> Option<SmallVector<P<ast::Item>>> {
self.items
}
fn make_methods(self: Box<Self>) -> Option<SmallVector<P<ast::Method>>> {
self.methods
}
fn make_def(&mut self) -> Option<MacroDef> {
self.def
}
}
/// A convenience type for macros that return a single expression.
pub struct MacExpr {
e: P<ast::Expr>
Expand Down