rust/src
Marijn Haverbeke 7efef98901 Make uses of self in impls compile
Get rid of expr_self_call, introduces def_self. `self` is now,
syntactically, simply a variable. A method implicitly brings a `self`
binding into scope.

Issue #1227
2011-12-16 11:46:57 +01:00
..
cargo cargo: Fix long lines 2011-12-16 17:17:24 +08:00
comp Make uses of self in impls compile 2011-12-16 11:46:57 +01:00
compiletest Copy first batch of material from libstd to libcore. 2011-12-13 16:34:50 -08:00
etc Attempt to fix windows builder. 2011-12-13 12:32:00 -08:00
fuzzer Copy first batch of material from libstd to libcore. 2011-12-13 16:34:50 -08:00
libcore stdlib: Add a str::split_str() to split on a delimiter string of any length 2011-12-15 17:39:53 -08:00
libstd Remove some duplicated unused parts of std now that they're present in core. 2011-12-14 18:04:45 -08:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
llvm@80c896f8ad Update LLVM. Fixes for segmented stacks with fastcc functions 2011-12-13 17:09:02 -08:00
rt massive refactor of how closures work 2011-12-15 13:44:06 -08:00
rustllvm Upgrade LLVM to svn revision 145779 2011-12-04 14:59:56 -08:00
test Make uses of self in impls compile 2011-12-16 11:46:57 +01:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
snapshots.txt Register snapshots 2011-12-14 14:11:53 -08:00

This is preliminary version of the Rust compiler.

Source layout:

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