]> git.proxmox.com Git - rustc.git/blame - src/libsyntax/ext/deriving/cmp/eq.rs
Imported Upstream version 1.6.0+dfsg1
[rustc.git] / src / libsyntax / ext / deriving / cmp / eq.rs
CommitLineData
970d7e83
LB
1// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
d9579d0f 11use ast::{MetaItem, Expr};
1a4d82fc 12use codemap::Span;
d9579d0f 13use ext::base::{ExtCtxt, Annotatable};
970d7e83
LB
14use ext::build::AstBuilder;
15use ext::deriving::generic::*;
1a4d82fc
JJ
16use ext::deriving::generic::ty::*;
17use parse::token::InternedString;
18use ptr::P;
970d7e83 19
d9579d0f
AL
20pub fn expand_deriving_eq(cx: &mut ExtCtxt,
21 span: Span,
22 mitem: &MetaItem,
62682a34 23 item: &Annotatable,
d9579d0f 24 push: &mut FnMut(Annotatable))
1a4d82fc 25{
d9579d0f
AL
26 fn cs_total_eq_assert(cx: &mut ExtCtxt, span: Span, substr: &Substructure) -> P<Expr> {
27 cs_same_method(
28 |cx, span, exprs| {
29 // create `a.<method>(); b.<method>(); c.<method>(); ...`
30 // (where method is `assert_receiver_is_total_eq`)
31 let stmts = exprs.into_iter().map(|e| cx.stmt_expr(e)).collect();
32 let block = cx.block(span, stmts, None);
33 cx.expr_block(block)
1a4d82fc 34 },
d9579d0f
AL
35 Box::new(|cx, sp, _, _| {
36 cx.span_bug(sp, "non matching enums in derive(Eq)?") }),
37 cx,
38 span,
39 substr
40 )
970d7e83
LB
41 }
42
d9579d0f
AL
43 let inline = cx.meta_word(span, InternedString::new("inline"));
44 let hidden = cx.meta_word(span, InternedString::new("hidden"));
45 let doc = cx.meta_list(span, InternedString::new("doc"), vec!(hidden));
46 let attrs = vec!(cx.attribute(span, inline),
47 cx.attribute(span, doc));
48 let trait_def = TraitDef {
49 span: span,
50 attributes: Vec::new(),
51 path: path_std!(cx, core::cmp::Eq),
52 additional_bounds: Vec::new(),
53 generics: LifetimeBounds::empty(),
e9174d1e 54 is_unsafe: false,
d9579d0f 55 methods: vec!(
970d7e83 56 MethodDef {
d9579d0f 57 name: "assert_receiver_is_total_eq",
970d7e83
LB
58 generics: LifetimeBounds::empty(),
59 explicit_self: borrowed_explicit_self(),
d9579d0f
AL
60 args: vec!(),
61 ret_ty: nil_ty(),
1a4d82fc 62 attributes: attrs,
62682a34 63 is_unsafe: false,
c34b1796 64 combine_substructure: combine_substructure(Box::new(|a, b, c| {
d9579d0f 65 cs_total_eq_assert(a, b, c)
c34b1796 66 }))
1a4d82fc 67 }
85aaf69f
SL
68 ),
69 associated_types: Vec::new(),
970d7e83 70 };
62682a34 71 trait_def.expand(cx, mitem, item, push)
970d7e83 72}