rust/src
Marijn Haverbeke 73d6df32cd Emergency safe-ref-checker maintenance
It still has some big problems, but at least it more or less
understands block arguments now.

Closes #1925
2012-03-27 17:22:57 +02:00
..
cargo Bulk-edit mutable -> mut. 2012-03-26 18:35:18 -07:00
compiletest make --enforce-mut-vars always on, add mut annotations to remaining files 2012-03-22 09:58:19 -07:00
etc Fixed vim highlighting for \' (and other) escapes in char literals 2012-03-25 16:26:48 -04:00
fuzzer Bulk-edit mutable -> mut. 2012-03-26 18:35:18 -07:00
libcore Move some code over to iterator-for to see how it performs. 2012-03-27 15:46:33 +02:00
libstd Move some code over to iterator-for to see how it performs. 2012-03-27 15:46:33 +02:00
libuv@1d6aec9d54 Disable some advanced (post glibc-2.3) libuv features when building snaps. 2012-03-26 18:03:53 -07:00
llvm@4119fda4c6
rt Disable some advanced (post glibc-2.3) libuv features when building snaps. 2012-03-26 18:03:53 -07:00
rustc Emergency safe-ref-checker maintenance 2012-03-27 17:22:57 +02:00
rustdoc Bulk-edit mutable -> mut. 2012-03-26 18:35:18 -07:00
rustllvm
test Support returning from loop blocks 2012-03-27 12:33:13 +02:00
README.txt
snapshots.txt Register new snapshot 2012-03-27 13:53:11 +02:00

This is preliminary version of the Rust compiler.

Source layout:

rustc/             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.