rust/src/comp/rustc.rc

153 lines
2.3 KiB
Plaintext
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
#[link(name = "rustc",
vers = "0.1",
uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
url = "http://rust-lang.org/src/rustc")];
#[comment = "The Rust compiler"];
#[license = "MIT"];
#[crate_type = "lib"];
2011-05-05 21:44:00 -05:00
use std (name = "std",
vers = "0.1",
url = "http://rust-lang.org/src/std");
2010-06-23 23:03:09 -05:00
2011-04-19 18:40:46 -05:00
mod middle {
mod trans {
mod common;
mod type_of;
mod build;
mod base;
mod alt;
mod uniq;
mod closure;
mod tvec;
mod impl;
mod native;
2012-02-14 22:12:47 -06:00
mod shape;
2012-02-17 15:51:19 -06:00
mod debuginfo;
}
2011-04-19 18:40:46 -05:00
mod ty;
mod ast_map;
2011-04-19 18:40:46 -05:00
mod resolve;
mod typeck;
mod fn_usage;
mod check_alt;
mod check_const;
mod lint;
mod mutbl;
mod alias;
mod last_use;
mod block_use;
mod kind;
2011-07-18 19:26:37 -05:00
mod freevars;
mod capture;
mod pat_util;
mod tstate {
mod ck;
mod annotate;
#[path = "auxiliary.rs"]
mod aux;
mod bitvectors;
mod collect_locals;
mod pre_post_conditions;
mod states;
mod ann;
mod tritv;
}
2011-04-19 18:40:46 -05:00
}
mod syntax {
mod ast;
mod ast_util;
mod fold;
mod visit;
mod codemap;
mod parse {
mod lexer;
mod parser;
mod token;
mod eval;
}
mod ext {
mod base;
mod expand;
mod qquote;
mod build;
mod fmt;
mod env;
mod simplext;
mod concat_idents;
mod ident_to_str;
mod log_syntax;
}
mod print {
mod pprust;
mod pp;
}
mod util {
mod interner;
}
2011-04-19 18:40:46 -05:00
}
mod front {
2011-06-30 01:42:35 -05:00
mod attr;
mod config;
mod test;
mod core_inject;
2010-06-23 23:03:09 -05:00
}
mod back {
mod link;
mod abi;
mod upcall;
mod x86;
mod x86_64;
2011-10-04 17:23:32 -05:00
mod rpath;
mod target_strs;
}
mod metadata {
export encoder;
export creader;
export cstore;
export csearch;
mod common;
mod tyencode;
mod tydecode;
mod encoder;
mod decoder;
mod creader;
mod cstore;
mod csearch;
}
2010-06-23 23:03:09 -05:00
mod driver {
mod driver;
mod session;
mod diagnostic;
2010-06-23 23:03:09 -05:00
}
2010-08-18 13:34:47 -05:00
mod util {
mod common;
mod ppaux;
mod filesearch;
2010-08-18 13:34:47 -05:00
}
2010-07-12 19:47:40 -05:00
mod lib {
mod llvm;
2010-07-12 19:47:40 -05:00
}
2010-06-23 23:03:09 -05:00
// Local Variables:
// fill-column: 78;
// indent-tabs-mode: nil
2010-08-18 13:34:22 -05:00
// c-basic-offset: 4
2010-06-23 23:03:09 -05:00
// buffer-file-coding-system: utf-8-unix
// End: