aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Move the option type to its own modulePatrick Walton2010-11-0514-93/+115
* rustboot: Report cyclic import errors at the right locationPatrick Walton2010-11-052-6/+9
* Revert "Move the option type to its own module"Patrick Walton2010-11-0511-68/+46
* rustboot: Describe the cycle when reporting a cyclic import errorPatrick Walton2010-11-051-1/+10
* Move the option type to its own modulePatrick Walton2010-11-0511-46/+68
* Fix buggy while and do-while translation in rustc. Add test.Graydon Hoare2010-11-044-12/+35
* rustboot: When resolving recursively, build up error messages recursively as ...Patrick Walton2010-11-031-25/+35
* rustboot: Say exactly which name was unbound when reporting unbound name errorsPatrick Walton2010-11-034-52/+73
* rustc: Use an extensible annotation field instead of putting option[@ty] ever...Patrick Walton2010-11-034-89/+94
* Support while and do-while loops in rustc.Graydon Hoare2010-11-034-0/+116
* Teach rustc lexer about changes to stratum, opacity and effect keywords.Graydon Hoare2010-11-032-5/+21
* Code sketch and comment notes on textual crate signatures.Graydon Hoare2010-11-034-0/+244
* Shift obj, type, param decls to have strata rather than effects.Graydon Hoare2010-11-027-74/+112
* Split out stratum-checking pass, implement more-strict (overly aggressive) im...Graydon Hoare2010-11-0216-143/+198
* First pass on splitting stratum and opacity off of effects. WIP.Graydon Hoare2010-11-0240-183/+271
* Un-XFAIL self tests on DarwinPatrick Walton2010-10-281-3/+0
* Remove debug print message from the makefilePatrick Walton2010-10-281-2/+0
* Allow just the bootstrap LLVM backend to be disabled with NO_OCAML_LLVM=1Patrick Walton2010-10-281-13/+40
* rustboot: Emit an error instead of asserting in trans when a T is passed by v...Patrick Walton2010-10-2811-17/+36
* Revert "rustboot: Emit an error instead of asserting in trans when a T is pas...Patrick Walton2010-10-282-21/+2
* rustboot: Emit an error instead of asserting in trans when a T is passed by v...Patrick Walton2010-10-282-2/+21
* Cast NULL to uintptr_t when calling rust_task::start().Ralph Giles2010-10-281-1/+1
* Emit a sensible error message if one or more of the parameters isn't enough c...Patrick Walton2010-10-271-4/+9
* rustboot: Emit an error message instead of asserting on a type-param mismatch...Patrick Walton2010-10-272-6/+10
* rustboot: For error reporting, map tag IDs to *tag* names, not to tag *varian...Patrick Walton2010-10-261-4/+5
* rustboot: Use a less hacky method to report tag names in error messages, whic...Patrick Walton2010-10-262-36/+10
* Thread a source location though for type error reporting instead of the awful...Patrick Walton2010-10-251-10/+11
* Merge commit '1875a36feecb7dab183a59ead2d0a342f733422e'Patrick Walton2010-10-251-1/+2
|\
| * Prevent Not_found in the unfortunate case when we have to "friendly_stringify...Patrick Walton2010-10-251-1/+2
* | Long line police.Graydon Hoare2010-10-221-3/+5
* | Pass outptr as in rustboot. Probably need to revisit this ABI. Also disgustin...Graydon Hoare2010-10-221-5/+18
* | Collect all fns first so decl order doesn't matter to translation.Graydon Hoare2010-10-221-13/+41
* | Extremely broken hacked-up incorrect attempt at 'ret'.Graydon Hoare2010-10-222-0/+36
* | More fire-fighting.Graydon Hoare2010-10-221-3/+6
* | Don't use string == in x86.rs, doesn't work.Graydon Hoare2010-10-221-1/+1
* | Merge branch 'master' of github.com:graydon/rustGraydon Hoare2010-10-224-0/+16
|\|
| * rustc: Add an "_" prefix to assembler-generated symbols on MacPatrick Walton2010-10-224-0/+16
* | Attempt to extinguish burning tree.Graydon Hoare2010-10-221-3/+3
|/
* Implement check-exprs, un-xfail 5 rustc tests.Graydon Hoare2010-10-226-3/+64
* rustboot: If the user tries to instantiate a non-parametric type with type pa...Patrick Walton2010-10-222-2/+7
* Add makefile bits to run rustc on the testsuite as part of 'make check'. Most...Graydon Hoare2010-10-222-54/+103
* Match llvm xfails inside-out, to make life a little less painful.Graydon Hoare2010-10-221-162/+32
* Make test targets in Makefile end in -boot.x86 or -boot.llvm when made by rus...Graydon Hoare2010-10-221-31/+34
* Give rustc the beginnings of an option-processing loop (at least -nowarn, -h ...Graydon Hoare2010-10-222-11/+99
* Make append take a mutable &. Not even checked at present, tsk tsk.Graydon Hoare2010-10-221-1/+1
* Add some filename helpers to os.Graydon Hoare2010-10-223-0/+25
* Change vec slice to use uint, add push/pop/shift/unshift.Graydon Hoare2010-10-222-20/+43
* Add support for passing args to fns in rustc.Graydon Hoare2010-10-211-18/+49
* Support basic function calls in rustc.Graydon Hoare2010-10-211-8/+39
* Teach rustc to parse call exprs.Graydon Hoare2010-10-211-0/+13