Skip to content

Commit 0597647

Browse files
committed
auto merge of #5493 : apasel422/rust/leibniz, r=bstrie
Closes #5411.
2 parents 9584c60 + 999e7ef commit 0597647

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+297
-252
lines changed

src/compiletest/common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use core::prelude::*;
1212

13-
#[deriving_eq]
13+
#[deriving(Eq)]
1414
pub enum mode {
1515
mode_compile_fail,
1616
mode_run_fail,

src/libcore/cmp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub trait Eq {
3737
pure fn ne(&self, other: &Self) -> bool;
3838
}
3939

40-
#[deriving_eq]
40+
#[deriving(Eq)]
4141
pub enum Ordering { Less, Equal, Greater }
4242

4343
/// Trait for types that form a total order

src/libcore/either.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use result;
1717
use vec;
1818

1919
/// The either type
20-
#[deriving_eq]
20+
#[deriving(Eq)]
2121
pub enum Either<T, U> {
2222
Left(T),
2323
Right(U)

src/libcore/io.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ pub pure fn with_str_reader<T>(s: &str, f: &fn(@Reader) -> T) -> T {
630630
pub enum FileFlag { Append, Create, Truncate, NoFlag, }
631631
632632
// What type of writer are we?
633-
#[deriving_eq]
633+
#[deriving(Eq)]
634634
pub enum WriterType { Screen, File }
635635
636636
// FIXME (#2004): Seekable really should be orthogonal.

src/libcore/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use iter::{BaseIter, MutableIter};
5252
#[cfg(test)] use str;
5353

5454
/// The option type
55-
#[deriving_eq]
55+
#[deriving(Eq)]
5656
pub enum Option<T> {
5757
None,
5858
Some(T),

src/libcore/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use option::{None, Option, Some};
2020
use str;
2121
use to_str::ToStr;
2222

23-
#[deriving_eq]
23+
#[deriving(Eq)]
2424
pub struct WindowsPath {
2525
host: Option<~str>,
2626
device: Option<~str>,
@@ -32,7 +32,7 @@ pub pure fn WindowsPath(s: &str) -> WindowsPath {
3232
GenericPath::from_str(s)
3333
}
3434

35-
#[deriving_eq]
35+
#[deriving(Eq)]
3636
pub struct PosixPath {
3737
is_absolute: bool,
3838
components: ~[~str],

src/libcore/result.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use option::{None, Option, Some};
2020
use vec;
2121

2222
/// The result type
23-
#[deriving_eq]
23+
#[deriving(Eq)]
2424
pub enum Result<T, U> {
2525
/// Contains the successful result value
2626
Ok(T),

src/libcore/task/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ pub mod rt;
5050
pub mod spawn;
5151

5252
/// A handle to a scheduler
53-
#[deriving_eq]
53+
#[deriving(Eq)]
5454
pub enum Scheduler {
5555
SchedulerHandle(sched_id)
5656
}
5757

5858
/// A handle to a task
59-
#[deriving_eq]
59+
#[deriving(Eq)]
6060
pub enum Task {
6161
TaskHandle(task_id)
6262
}
@@ -88,7 +88,7 @@ impl Eq for TaskResult {
8888
}
8989

9090
/// Scheduler modes
91-
#[deriving_eq]
91+
#[deriving(Eq)]
9292
pub enum SchedMode {
9393
/// Run task on the default scheduler
9494
DefaultScheduler,

src/libcore/unstable/extfmt.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ pub mod ct {
9797
use prelude::*;
9898
use str;
9999

100-
#[deriving_eq]
100+
#[deriving(Eq)]
101101
pub enum Signedness { Signed, Unsigned, }
102102

103-
#[deriving_eq]
103+
#[deriving(Eq)]
104104
pub enum Caseness { CaseUpper, CaseLower, }
105105

106-
#[deriving_eq]
106+
#[deriving(Eq)]
107107
pub enum Ty {
108108
TyBool,
109109
TyStr,
@@ -116,7 +116,7 @@ pub mod ct {
116116
TyPoly,
117117
}
118118

119-
#[deriving_eq]
119+
#[deriving(Eq)]
120120
pub enum Flag {
121121
FlagLeftJustify,
122122
FlagLeftZeroPad,
@@ -125,15 +125,15 @@ pub mod ct {
125125
FlagAlternate,
126126
}
127127

128-
#[deriving_eq]
128+
#[deriving(Eq)]
129129
pub enum Count {
130130
CountIs(uint),
131131
CountIsParam(uint),
132132
CountIsNextParam,
133133
CountImplied,
134134
}
135135

136-
#[deriving_eq]
136+
#[deriving(Eq)]
137137
struct Parsed<T> {
138138
val: T,
139139
next: uint
@@ -146,7 +146,7 @@ pub mod ct {
146146
}
147147

148148
// A formatted conversion from an expression to a string
149-
#[deriving_eq]
149+
#[deriving(Eq)]
150150
pub struct Conv {
151151
param: Option<uint>,
152152
flags: ~[Flag],
@@ -156,7 +156,7 @@ pub mod ct {
156156
}
157157

158158
// A fragment of the output sequence
159-
#[deriving_eq]
159+
#[deriving(Eq)]
160160
pub enum Piece { PieceString(~str), PieceConv(Conv), }
161161

162162
pub type ErrorFn = @fn(&str) -> !;
@@ -596,7 +596,7 @@ pub mod rt {
596596
};
597597
}
598598
599-
#[deriving_eq]
599+
#[deriving(Eq)]
600600
pub enum PadMode { PadSigned, PadUnsigned, PadNozero, PadFloat }
601601
602602
pub fn pad(cv: Conv, s: ~str, mode: PadMode) -> ~str {

src/libfuzzer/fuzzer.rc

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use syntax::parse;
3939
use syntax::print::pprust;
4040
use syntax::diagnostic;
4141

42-
#[deriving_eq]
42+
#[deriving(Eq)]
4343
pub enum test_mode { tm_converge, tm_run, }
4444

4545
pub struct Context { mode: test_mode } // + rng

src/librustc/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use syntax::ast_map::{path, path_mod, path_name};
3838
use syntax::attr;
3939
use syntax::print::pprust;
4040

41-
#[deriving_eq]
41+
#[deriving(Eq)]
4242
pub enum output_type {
4343
output_type_none,
4444
output_type_bitcode,

src/librustc/driver/driver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub fn parse_input(sess: Session, +cfg: ast::crate_cfg, input: input)
161161
}
162162
}
163163

164-
#[deriving_eq]
164+
#[deriving(Eq)]
165165
pub enum compile_upto {
166166
cu_parse,
167167
cu_expand,

src/librustc/driver/session.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ use syntax::parse::ParseSess;
2727
use syntax::{ast, codemap};
2828
use syntax;
2929

30-
#[deriving_eq]
30+
#[deriving(Eq)]
3131
pub enum os { os_win32, os_macos, os_linux, os_android, os_freebsd, }
3232

33-
#[deriving_eq]
33+
#[deriving(Eq)]
3434
pub enum arch { arch_x86, arch_x86_64, arch_arm, arch_mips, }
3535

3636
pub enum crate_type { bin_crate, lib_crate, unknown_crate, }
@@ -104,7 +104,7 @@ pub fn debugging_opts_map() -> ~[(~str, ~str, uint)] {
104104
]
105105
}
106106

107-
#[deriving_eq]
107+
#[deriving(Eq)]
108108
pub enum OptLevel {
109109
No, // -O0
110110
Less, // -O1

src/librustc/lib/llvm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ pub enum RealPredicate {
127127

128128
// enum for the LLVM TypeKind type - must stay in sync with the def of
129129
// LLVMTypeKind in llvm/include/llvm-c/Core.h
130-
#[deriving_eq]
130+
#[deriving(Eq)]
131131
pub enum TypeKind {
132132
Void = 0,
133133
Half = 1,

src/librustc/metadata/decoder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fn lookup_item(item_id: int, data: @~[u8]) -> ebml::Doc {
9393
}
9494
}
9595

96-
#[deriving_eq]
96+
#[deriving(Eq)]
9797
enum Family {
9898
Const, // c
9999
Fn, // f

src/librustc/middle/borrowck/check_loans.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct CheckLoanCtxt {
5151
}
5252

5353
// if we are enforcing purity, why are we doing so?
54-
#[deriving_eq]
54+
#[deriving(Eq)]
5555
enum purity_cause {
5656
// enforcing purity because fn was declared pure:
5757
pc_pure_fn,
@@ -80,7 +80,7 @@ pub fn check_loans(bccx: @BorrowckCtxt,
8080
visit::visit_crate(*crate, clcx, vt);
8181
}
8282

83-
#[deriving_eq]
83+
#[deriving(Eq)]
8484
enum assignment_type {
8585
at_straight_up,
8686
at_swap

src/librustc/middle/borrowck/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ pub type root_map = HashMap<root_map_key, RootInfo>;
340340
// if you have an expression `x.f` and x has type ~@T, we could add an
341341
// entry {id:x, derefs:0} to refer to `x` itself, `{id:x, derefs:1}`
342342
// to refer to the deref of the unique pointer, and so on.
343-
#[deriving_eq]
343+
#[deriving(Eq)]
344344
pub struct root_map_key {
345345
id: ast::node_id,
346346
derefs: uint
@@ -355,7 +355,7 @@ pub type mutbl_map = HashMap<ast::node_id, ()>;
355355
pub type write_guard_map = HashMap<root_map_key, ()>;
356356

357357
// Errors that can occur
358-
#[deriving_eq]
358+
#[deriving(Eq)]
359359
pub enum bckerr_code {
360360
err_mut_uniq,
361361
err_mut_variant,
@@ -367,7 +367,7 @@ pub enum bckerr_code {
367367

368368
// Combination of an error code and the categorization of the expression
369369
// that caused it
370-
#[deriving_eq]
370+
#[deriving(Eq)]
371371
pub struct bckerr {
372372
cmt: cmt,
373373
code: bckerr_code
@@ -382,7 +382,7 @@ pub enum MoveError {
382382
// shorthand for something that fails with `bckerr` or succeeds with `T`
383383
pub type bckres<T> = Result<T, bckerr>;
384384

385-
#[deriving_eq]
385+
#[deriving(Eq)]
386386
pub enum LoanKind {
387387
TotalFreeze, // Entire path is frozen (borrowed as &T)
388388
PartialFreeze, // Some subpath is frozen (borrowed as &T)

src/librustc/middle/check_match.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ pub type matrix = ~[~[@pat]];
183183
184184
pub enum useful { useful(ty::t, ctor), useful_, not_useful }
185185
186-
#[deriving_eq]
186+
#[deriving(Eq)]
187187
pub enum ctor {
188188
single,
189189
variant(def_id),

src/librustc/middle/const_eval.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ pub fn process_crate(crate: @ast::crate,
240240

241241
// FIXME (#33): this doesn't handle big integer/float literals correctly
242242
// (nor does the rest of our literal handling).
243-
#[deriving_eq]
243+
#[deriving(Eq)]
244244
pub enum const_val {
245245
const_float(f64),
246246
const_int(i64),

src/librustc/middle/lint.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use syntax::{ast, ast_util, visit};
6060
* process.
6161
*/
6262

63-
#[deriving_eq]
63+
#[deriving(Eq)]
6464
pub enum lint {
6565
ctypes,
6666
unused_imports,
@@ -99,7 +99,7 @@ pub fn level_to_str(lv: level) -> &'static str {
9999
}
100100
}
101101

102-
#[deriving_eq]
102+
#[deriving(Eq)]
103103
pub enum level {
104104
allow, warn, deny, forbid
105105
}

src/librustc/middle/mem_categorization.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use syntax::ast;
6060
use syntax::codemap::span;
6161
use syntax::print::pprust;
6262

63-
#[deriving_eq]
63+
#[deriving(Eq)]
6464
pub enum categorization {
6565
cat_rvalue, // result of eval'ing some misc expr
6666
cat_special(special_kind), //
@@ -75,7 +75,7 @@ pub enum categorization {
7575
}
7676

7777
// different kinds of pointers:
78-
#[deriving_eq]
78+
#[deriving(Eq)]
7979
pub enum ptr_kind {
8080
uniq_ptr,
8181
gc_ptr(ast::mutability),
@@ -85,7 +85,7 @@ pub enum ptr_kind {
8585

8686
// I am coining the term "components" to mean "pieces of a data
8787
// structure accessible without a dereference":
88-
#[deriving_eq]
88+
#[deriving(Eq)]
8989
pub enum comp_kind {
9090
comp_tuple, // elt in a tuple
9191
comp_anon_field, // anonymous field (in e.g.
@@ -98,15 +98,15 @@ pub enum comp_kind {
9898
}
9999

100100
// different kinds of expressions we might evaluate
101-
#[deriving_eq]
101+
#[deriving(Eq)]
102102
pub enum special_kind {
103103
sk_method,
104104
sk_static_item,
105105
sk_implicit_self, // old by-reference `self`
106106
sk_heap_upvar
107107
}
108108

109-
#[deriving_eq]
109+
#[deriving(Eq)]
110110
pub enum MutabilityCategory {
111111
McImmutable, // Immutable.
112112
McReadOnly, // Read-only (`const`)
@@ -119,7 +119,7 @@ pub enum MutabilityCategory {
119119
// which the value is stored.
120120
//
121121
// note: cmt stands for "categorized mutable type".
122-
#[deriving_eq]
122+
#[deriving(Eq)]
123123
pub struct cmt_ {
124124
id: ast::node_id, // id of expr/pat producing this value
125125
span: span, // span of same expr/pat
@@ -134,7 +134,7 @@ pub type cmt = @cmt_;
134134
// a loan path is like a category, but it exists only when the data is
135135
// interior to the stack frame. loan paths are used as the key to a
136136
// map indicating what is borrowed at any point in time.
137-
#[deriving_eq]
137+
#[deriving(Eq)]
138138
pub enum loan_path {
139139
lp_local(ast::node_id),
140140
lp_arg(ast::node_id),

src/librustc/middle/region.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ pub fn resolve_crate(sess: Session,
389389

390390
pub type region_paramd_items = HashMap<ast::node_id, region_variance>;
391391

392-
#[deriving_eq]
392+
#[deriving(Eq)]
393393
pub struct region_dep {
394394
ambient_variance: region_variance,
395395
id: ast::node_id

0 commit comments

Comments
 (0)