rust/src
Marijn Haverbeke 5adf87a2c6 Fix iter_structural_ty_full for resource types
The compiler would blow up when compiling a structural type
containing a resource.
2011-07-29 11:44:29 +02:00
..
comp Fix iter_structural_ty_full for resource types 2011-07-29 11:44:29 +02:00
etc Make combine-tests ignore temp files 2011-07-28 14:24:20 -07:00
fuzzer Make the fuzzer check for obvious errors in the 'rest of the compiler', not just the parser. (Disabled by default because it's slow and messy.) 2011-07-29 10:39:15 +02:00
lib Make program_output also return stderr 2011-07-29 10:39:14 +02:00
rt Add an assertion about the lock in rust_chan::disassociate 2011-07-28 16:04:49 -07:00
rustllvm Revert "Revert "Rename Passes2.cpp to Passes.cpp"" 2011-07-17 19:16:23 -07:00
test Fix iter_structural_ty_full for resource types 2011-07-29 11:44:29 +02:00
README Update README files 2011-06-26 22:27:22 -07:00
snapshots.txt Register new snapshots. 2011-07-28 16:28:04 -07:00

This is preliminary version of the Rust compiler(s).

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