rust/src
Tim Chevalier c9a8bdee2f Improve error message for ambiguous polymorphic types
If a type still contains free type variables after typechecking (for
example, as with "auto foo = []", the result was an assertion failure
in typeck. Made it a human-readable error message instead.
2011-05-23 19:46:27 -07:00
..
comp Improve error message for ambiguous polymorphic types 2011-05-23 19:46:27 -07:00
etc Add mirror-all-snapshots.py script for extra crowdsourced backup power. 2011-05-17 22:06:55 -07:00
fuzzer fuzzer: Begin writing main 2011-05-20 22:32:41 -04:00
lib stdlib: Make the bound vector an alias in std::deque 2011-05-23 19:45:51 -04:00
rt Translated start_task, but it fails on spp == align_down(spp) 2011-05-20 16:51:09 -07:00
rustllvm rustllvm: Free TargetMachine in LLVMRustWriteOutputFile 2011-05-14 00:48:51 -04:00
test test: Un-xfail some working tests 2011-05-23 22:41:37 -04:00
README Remove rustboot from the repository. 2011-05-13 18:38:28 -07:00
run.py
snapshots.txt Register new snapshots 2011-05-21 18:09:15 -04:00

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

Source layout:

comp/              The self-hosted compiler

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 (for both bootstrap and self-hosted)
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.