rust/src
Marijn Haverbeke cb2f43cbf4 Stop normalizing patterns
The check for whether a pat_ident is a variant or a binding
is simple and fast. Normalizing patterns again and again is
slow and error-prone (several places were forgetting to do it).
2012-02-22 16:57:23 +01:00
..
cargo cargo: Install blobs to $sysroot/(bin|lib) on system-mode 2012-02-20 17:55:36 +09:00
comp Stop normalizing patterns 2012-02-22 16:57:23 +01:00
compiletest core: New task API 2012-02-20 18:58:04 -08:00
etc vim: fix indenting enums and macros 2012-02-19 13:08:32 -08:00
fuzzer make mut a keyword synonymous with mutable 2012-02-15 13:26:11 -08:00
libcore Fix uint/u64 confusion 2012-02-22 13:44:55 +01:00
libstd Make the various from_str functions return options 2012-02-22 13:18:15 +01:00
libuv@1170ffba3a
llvm@d578b905de
rt Remove unused tydesc argument to upcall_shared_malloc 2012-02-21 17:08:14 +01:00
rustdoc rustdoc: Turn off parallel folding until I figure out what's wrong on OS X 2012-02-21 16:15:14 -08:00
rustllvm
serializer
test Take move captures in account in mutability checker 2012-02-22 13:35:17 +01:00
README.txt
snapshots.txt Register new snapshot 2012-02-15 14:00:02 +01:00

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

cargo/             The package manager

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)

rustllvm/          LLVM support code

rt/                The runtime system
rt/rust_*.cpp      - The majority of the runtime services
rt/isaac           - The PRNG used for pseudo-random choices in the runtime
rt/bigint          - The bigint library used for the 'big' type
rt/uthash          - Small hashtable-and-list library for C, used in runtime
rt/libuv           - The library used for async IO in the runtime
rt/{sync,util}     - Small utility classes for the runtime.

test/              Testsuite
test/compile-fail  - Tests that should fail to compile
test/run-fail      - Tests that should compile, run and fail
test/run-pass      - Tests that should compile, run and succeed
test/bench         - Benchmarks and miscellanea

Please be gentle, it's a work in progress.