File tree 7 files changed +0
-18
lines changed
7 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ pub mod doc;
43
43
44
44
pub mod check_loans;
45
45
46
- #[ path="gather_loans/mod.rs" ]
47
46
pub mod gather_loans;
48
47
49
48
pub mod move_data;
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ pub mod combine;
52
52
pub mod glb;
53
53
pub mod lattice;
54
54
pub mod lub;
55
- #[ path = "region_inference/mod.rs" ]
56
55
pub mod region_inference;
57
56
pub mod resolve;
58
57
pub mod sub;
Original file line number Diff line number Diff line change @@ -66,11 +66,9 @@ use syntax::print::pprust::*;
66
66
use syntax:: { ast, ast_map, abi} ;
67
67
use syntax:: opt_vec;
68
68
69
- #[ path = "check/mod.rs" ]
70
69
pub mod check;
71
70
pub mod rscope;
72
71
pub mod astconv;
73
- #[ path = "infer/mod.rs" ]
74
72
pub mod infer;
75
73
pub mod collect;
76
74
pub mod coherence;
Original file line number Diff line number Diff line change @@ -41,18 +41,15 @@ use syntax::codemap;
41
41
use syntax:: diagnostic;
42
42
43
43
pub mod middle {
44
- #[ path = "trans/mod.rs" ]
45
44
pub mod trans;
46
45
pub mod ty;
47
46
pub mod subst;
48
47
pub mod resolve;
49
- #[ path = "typeck/mod.rs" ]
50
48
pub mod typeck;
51
49
pub mod check_loop;
52
50
pub mod check_match;
53
51
pub mod check_const;
54
52
pub mod lint;
55
- #[ path = "borrowck/mod.rs" ]
56
53
pub mod borrowck;
57
54
pub mod dataflow;
58
55
pub mod mem_categorization;
@@ -70,7 +67,6 @@ pub mod middle {
70
67
pub mod effect;
71
68
pub mod reachable;
72
69
pub mod graph;
73
- #[ path = "cfg/mod.rs" ]
74
70
pub mod cfg;
75
71
}
76
72
@@ -93,10 +89,8 @@ pub mod back {
93
89
pub mod passes;
94
90
}
95
91
96
- #[ path = "metadata/mod.rs" ]
97
92
pub mod metadata;
98
93
99
- #[ path = "driver/mod.rs" ]
100
94
pub mod driver;
101
95
102
96
pub mod util {
Original file line number Diff line number Diff line change @@ -90,14 +90,12 @@ mod kill;
90
90
mod sched;
91
91
92
92
/// Synchronous I/O.
93
- #[ path = "io/mod.rs" ]
94
93
pub mod io;
95
94
96
95
/// The EventLoop and internal synchronous I/O interface.
97
96
mod rtio;
98
97
99
98
/// libuv and default rtio implementation.
100
- #[ path = "uv/mod.rs" ]
101
99
pub mod uv;
102
100
103
101
/// The Local trait for types that are accessible via thread-local
Original file line number Diff line number Diff line change @@ -162,7 +162,6 @@ pub mod trie;
162
162
163
163
/* Tasks and communication */
164
164
165
- #[ path = "task/mod.rs" ]
166
165
pub mod task;
167
166
pub mod comm;
168
167
pub mod pipes;
@@ -190,7 +189,6 @@ pub mod util;
190
189
/* Unsupported interfaces */
191
190
192
191
// Private APIs
193
- #[ path = "unstable/mod.rs" ]
194
192
pub mod unstable;
195
193
196
194
/* For internal use, not exported */
@@ -202,7 +200,6 @@ mod stackwalk;
202
200
203
201
// XXX: This shouldn't be pub, and it should be reexported under 'unstable'
204
202
// but name resolution doesn't work without it being pub.
205
- #[ path = "rt/mod.rs" ]
206
203
pub mod rt;
207
204
208
205
// A curious inner-module that's not exported that contains the binding
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ pub mod visit;
45
45
pub mod fold;
46
46
47
47
48
- #[ path = "parse/mod.rs" ]
49
48
pub mod parse;
50
49
51
50
pub mod print {
@@ -60,7 +59,6 @@ pub mod ext {
60
59
61
60
pub mod quote;
62
61
63
- #[ path = "deriving/mod.rs" ]
64
62
pub mod deriving;
65
63
66
64
pub mod build;
@@ -80,7 +78,6 @@ pub mod ext {
80
78
pub mod auto_encode;
81
79
pub mod source_util;
82
80
83
- #[ path = "pipes/mod.rs" ]
84
81
pub mod pipes;
85
82
86
83
pub mod trace_macros;
You can’t perform that action at this time.
0 commit comments