Remove unnecessary #[path = "***/mod.rs"] lines.

Fixes #7922.

Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
OGINO Masanori 2013-07-27 10:47:10 +09:00
parent 300ba1cc5c
commit 8d654fc41d
7 changed files with 0 additions and 18 deletions

View File

@ -43,7 +43,6 @@ pub mod doc;
pub mod check_loans; pub mod check_loans;
#[path="gather_loans/mod.rs"]
pub mod gather_loans; pub mod gather_loans;
pub mod move_data; pub mod move_data;

View File

@ -52,7 +52,6 @@ pub mod combine;
pub mod glb; pub mod glb;
pub mod lattice; pub mod lattice;
pub mod lub; pub mod lub;
#[path = "region_inference/mod.rs"]
pub mod region_inference; pub mod region_inference;
pub mod resolve; pub mod resolve;
pub mod sub; pub mod sub;

View File

@ -66,11 +66,9 @@ use syntax::print::pprust::*;
use syntax::{ast, ast_map, abi}; use syntax::{ast, ast_map, abi};
use syntax::opt_vec; use syntax::opt_vec;
#[path = "check/mod.rs"]
pub mod check; pub mod check;
pub mod rscope; pub mod rscope;
pub mod astconv; pub mod astconv;
#[path = "infer/mod.rs"]
pub mod infer; pub mod infer;
pub mod collect; pub mod collect;
pub mod coherence; pub mod coherence;

View File

@ -41,18 +41,15 @@ use syntax::codemap;
use syntax::diagnostic; use syntax::diagnostic;
pub mod middle { pub mod middle {
#[path = "trans/mod.rs"]
pub mod trans; pub mod trans;
pub mod ty; pub mod ty;
pub mod subst; pub mod subst;
pub mod resolve; pub mod resolve;
#[path = "typeck/mod.rs"]
pub mod typeck; pub mod typeck;
pub mod check_loop; pub mod check_loop;
pub mod check_match; pub mod check_match;
pub mod check_const; pub mod check_const;
pub mod lint; pub mod lint;
#[path = "borrowck/mod.rs"]
pub mod borrowck; pub mod borrowck;
pub mod dataflow; pub mod dataflow;
pub mod mem_categorization; pub mod mem_categorization;
@ -70,7 +67,6 @@ pub mod middle {
pub mod effect; pub mod effect;
pub mod reachable; pub mod reachable;
pub mod graph; pub mod graph;
#[path = "cfg/mod.rs"]
pub mod cfg; pub mod cfg;
} }
@ -93,10 +89,8 @@ pub mod back {
pub mod passes; pub mod passes;
} }
#[path = "metadata/mod.rs"]
pub mod metadata; pub mod metadata;
#[path = "driver/mod.rs"]
pub mod driver; pub mod driver;
pub mod util { pub mod util {

View File

@ -90,14 +90,12 @@ mod kill;
mod sched; mod sched;
/// Synchronous I/O. /// Synchronous I/O.
#[path = "io/mod.rs"]
pub mod io; pub mod io;
/// The EventLoop and internal synchronous I/O interface. /// The EventLoop and internal synchronous I/O interface.
mod rtio; mod rtio;
/// libuv and default rtio implementation. /// libuv and default rtio implementation.
#[path = "uv/mod.rs"]
pub mod uv; pub mod uv;
/// The Local trait for types that are accessible via thread-local /// The Local trait for types that are accessible via thread-local

View File

@ -162,7 +162,6 @@ pub mod trie;
/* Tasks and communication */ /* Tasks and communication */
#[path = "task/mod.rs"]
pub mod task; pub mod task;
pub mod comm; pub mod comm;
pub mod pipes; pub mod pipes;
@ -190,7 +189,6 @@ pub mod util;
/* Unsupported interfaces */ /* Unsupported interfaces */
// Private APIs // Private APIs
#[path = "unstable/mod.rs"]
pub mod unstable; pub mod unstable;
/* For internal use, not exported */ /* For internal use, not exported */
@ -202,7 +200,6 @@ mod stackwalk;
// XXX: This shouldn't be pub, and it should be reexported under 'unstable' // XXX: This shouldn't be pub, and it should be reexported under 'unstable'
// but name resolution doesn't work without it being pub. // but name resolution doesn't work without it being pub.
#[path = "rt/mod.rs"]
pub mod rt; pub mod rt;
// A curious inner-module that's not exported that contains the binding // A curious inner-module that's not exported that contains the binding

View File

@ -45,7 +45,6 @@ pub mod visit;
pub mod fold; pub mod fold;
#[path = "parse/mod.rs"]
pub mod parse; pub mod parse;
pub mod print { pub mod print {
@ -60,7 +59,6 @@ pub mod ext {
pub mod quote; pub mod quote;
#[path = "deriving/mod.rs"]
pub mod deriving; pub mod deriving;
pub mod build; pub mod build;
@ -80,7 +78,6 @@ pub mod ext {
pub mod auto_encode; pub mod auto_encode;
pub mod source_util; pub mod source_util;
#[path = "pipes/mod.rs"]
pub mod pipes; pub mod pipes;
pub mod trace_macros; pub mod trace_macros;