rust/src
Tim Chevalier 499a58708f Assign correct types to struct-like enum variant constructors
Before, the type was just the enum type itself, which caused an
assertion failure in iter_variant in trans::base.

r=brson

Closes #4229
2012-12-24 15:59:15 -08:00
..
compiletest bump 0.5 => 0.6, redirect some URLs in docs. 2012-12-21 15:35:49 -08:00
driver bump 0.5 => 0.6, redirect some URLs in docs. 2012-12-21 15:35:49 -08:00
etc update after/syntax/rust.vim for removal of <- 2012-12-21 21:37:32 -05:00
libcargo bump 0.5 => 0.6, redirect some URLs in docs. 2012-12-21 15:35:49 -08:00
libcore Fix wayward search and replace; unbreak build 2012-12-24 12:37:45 -08:00
libfuzzer bump 0.5 => 0.6, redirect some URLs in docs. 2012-12-21 15:35:49 -08:00
librustc Assign correct types to struct-like enum variant constructors 2012-12-24 15:59:15 -08:00
librustdoc bump 0.5 => 0.6, redirect some URLs in docs. 2012-12-21 15:35:49 -08:00
librusti Merge pull request #4249 from graydon/0.6-bump 2012-12-23 13:47:11 -08:00
libstd Merge pull request #4278 from cpeterso/incoming-pure-functions 2012-12-24 11:33:22 -08:00
libsyntax bump 0.5 => 0.6, redirect some URLs in docs. 2012-12-21 15:35:49 -08:00
libuv@1170ffba3a rustc: Don't generate landing pad cleanups for boxy things 2012-03-29 16:43:18 -07:00
llvm@accc36b3e3 llvm: fork to disable LiveIRVariabes in GCStrategy. 2012-11-14 18:21:09 -08:00
rt Whitespace 2012-12-15 23:03:45 -08:00
rustllvm rustllvm: Fix symbol resolution on Mac for rusti. rs=bugfix 2012-12-22 16:24:19 -05:00
test Assign correct types to struct-like enum variant constructors 2012-12-24 15:59:15 -08:00
README.txt Update src/README.txt 2012-11-29 14:24:33 +05:30
snapshots.txt Register snapshots 2012-12-20 12:49:37 -08:00

This is a preliminary version of the Rust compiler, libraries and tools

Source layout:

librustc/          The self-hosted compiler

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)
libsyntax/         The Rust parser and pretty-printer

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            - Concurrency utils
rt/util            - Small utility classes for the runtime.
rt/vg              - Valgrind headers
rt/msvc            - MSVC support

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
test/pretty        - Pretty-printer tests
test/auxiliary     - Dependencies of tests

compiletest/       The test runner

libcargo/          The package manager

librusti/          The JIT REPL

librustdoc/        The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

libfuzzer/         A collection of fuzz testers

etc/               Scripts, editor support, misc