about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2011-07-29Get rid of an obsolete comment now that obj dtors are gone.Lindsey Kuper-3/+0
2011-07-29Fix long linesBrian Anderson-3/+3
2011-07-29Add issue numbers to FIXMEs in compiletestBrian Anderson-2/+2
2011-07-29Close pipes under failure scenario in compiletestBrian Anderson-1/+5
2011-07-29Get compile tests to run in parallelBrian Anderson-31/+86
2011-07-29Add ivec::from_vec and ivec::to_vecBrian Anderson-0/+16
2011-07-29Disallow overloading a method with one of different type. Closes #703.Lindsey Kuper-14/+15
2011-07-29Turn on kind propagation for typarams. Annotate a bunch of typarams in rustc ...Graydon Hoare-91/+89
2011-07-29Remove unreachable statementsMarijn Haverbeke-33/+25
2011-07-29Track failures in typeck, assign proper type to failing blocksMarijn Haverbeke-91/+127
2011-07-29Typechecking bugfix for anon objs. Removes duplicate methods in outerLindsey Kuper-0/+20
2011-07-29Formatting tweaks.Lindsey Kuper-8/+5
2011-07-29Merge pull request #781 from robarnold/upstream-stablerobarnold-2/+4
2011-07-29Parse anonymous objs in statement positionMarijn Haverbeke-32/+21
2011-07-29Clean up old FIXME regarding or-patternsMarijn Haverbeke-10/+2
2011-07-29Remove support for obj dtorsMarijn Haverbeke-323/+19
2011-07-29Replace obj dtors with resources in stdlib and rustcMarijn Haverbeke-69/+82
2011-07-29Make sure resources always have their drop glue calledMarijn Haverbeke-1/+9
2011-07-29Beginning of replacing drop with resourcesMarijn Haverbeke-9/+11
2011-07-29Missed another instance of walk in typeckMarijn Haverbeke-5/+4
2011-07-29Register a snapshotMarijn Haverbeke-0/+5
2011-07-29Fix iter_structural_ty_full for resource typesMarijn Haverbeke-21/+35
2011-07-29Make the fuzzer check for obvious errors in the 'rest of the compiler', not j...Jesse Ruderman-6/+65
2011-07-29Make program_output also return stderrJesse Ruderman-9/+28
2011-07-28Change the way freevars stores its information again.Michael Sullivan-46/+37
2011-07-28Factor out a bunch of environment construction code from trans_bind.Michael Sullivan-84/+99
2011-07-28Drop the previous reference when receiving. Closes #763Brian Anderson-8/+56
2011-07-28Register new snapshots.Graydon Hoare-0/+5
2011-07-28Add an assertion about the lock in rust_chan::disassociateBrian Anderson-1/+3
2011-07-28Factor out box initializing code into trans_malloc_boxed.Michael Sullivan-66/+36
2011-07-28Updated alt indenting.Lindsey Kuper-11/+11
2011-07-28The names 'outer' and 'inner' make more sense than 'self' and 'with'.Lindsey Kuper-100/+103
2011-07-28Turn off TRACK_ALLOCATIONSBrian Anderson-1/+1
2011-07-28Change the locking rules around channel disassociation againBrian Anderson-1/+4
2011-07-28Make combine-tests ignore temp filesBrian Anderson-1/+2
2011-07-28Reenable expr-scope test. Disable under check-fastBrian Anderson-5/+1
2011-07-28Thread kinds into the type system. Don't quite activate yet, since it breaks ...Graydon Hoare-44/+72
2011-07-28Fiddle with the locking around channel disassociationBrian Anderson-2/+1
2011-07-28No strnlen on macBrian Anderson-4/+3
2011-07-28When using the allow leaks hack don't even print a warning about the leakBrian Anderson-3/+0
2011-07-28Do all runtime calls to getenv at initializationBrian Anderson-86/+180
2011-07-28Remove color-related code from rust_logBrian Anderson-48/+2
2011-07-28Change macro syntax to accept a single expr, not a sequence of exprs.Paul Stansifer-78/+80
2011-07-28Updating to work on Windows.Eric Holk-7/+16
2011-07-28Re-enabled the rest of the asserts and things in rust_chan.cppEric Holk-12/+11
2011-07-28Resurrecting some of the logging in rust_chan.cppEric Holk-30/+35
2011-07-28Removed outdated comment.Eric Holk-1/+0
2011-07-28Atomic reference counting for tasks.Eric Holk-77/+43
2011-07-28Adding upcalls to to ref() and deref() tasks. This is the first step towards ...Eric Holk-3/+42
2011-07-28Made task threads wait instead of sleep, so they can be woken up. This appear...Eric Holk-22/+61