rust/src
2011-09-20 19:40:47 -07:00
..
comp Represent unique creation as a unop in the AST instead of its own expr 2011-09-20 18:06:47 -07:00
etc
fuzzer Ignore #949 2011-09-20 16:42:58 -07:00
lib
rt Re-wrap long line 2011-09-20 19:40:47 -07:00
rustllvm
test Make creation of unique boxes work again 2011-09-20 17:51:17 -07:00
README Revert trivial commit. 2011-09-20 17:20:14 -07:00
snapshots.txt

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

lib/               The standard library

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.