]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2011-07-28 Jesse RudermanGet expr-moving fuzzer working again
2011-07-28 Graydon HoareParse, store and print type parameter kind constraints.
2011-07-28 Marijn HaverbekeDisable expr-scope test, since it break windows
2011-07-28 Graydon HoareFix stale 'copy' occurrences to 'move' in comments.
2011-07-28 Josh MatthewsMerge pull request #765 from jdm/colon
2011-07-28 Josh Matthews:: is allowed to start an expression. Close #762.
2011-07-28 Marijn HaverbekeReplace walk with visit in the typechecker
2011-07-28 Marijn HaverbekeRemove walk instance from kind.rs
2011-07-28 Marijn HaverbekeShow millisecond precision for time_passes times
2011-07-28 Graydon HoareFurther refinement to kind system lattice and type...
2011-07-28 Lindsey KuperSome work on backwarding for issue #702.
2011-07-28 Brian AndersonAdd std::io::stderr
2011-07-28 Brian AndersonDon't stop at first test failure
2011-07-28 Brian AndersonClean up output a bit when running verbose compile...
2011-07-28 Brian AndersonPrint a newline before displaying test output
2011-07-28 Brian AndersonCapture stderr when running compile tests. Closes #755
2011-07-28 Brian AndersonAdd PPFILES flag to specify a which files to reformat
2011-07-28 Brian AndersonRefactor compiletest
2011-07-28 Michael SullivanHave bind support non-alias parametric non-bound arguments.
2011-07-28 Michael SullivanAllow already bound functions to be bound again.
2011-07-28 Michael SullivanFix binding a bare fn argument with type parameters.
2011-07-28 Graydon HoareRemove vestiges of "layers", insert skeletal do-nothing...
2011-07-27 Michael SullivanRemove the bind-alias test, since binding to aliases...
2011-07-27 Brian AndersonRemove task::worker harder
2011-07-27 Brian AndersonRemove task::worker
2011-07-27 Michael SullivanEliminate "target" field in closures.
2011-07-27 Michael SullivanPut the bound function in bind in the bindings, not...
2011-07-27 Michael SullivanMess around with the casting in trans_bind.
2011-07-27 Michael SullivanSome cleanup in trans.
2011-07-27 Michael SullivanAssociate names with taskptr and tydesc types for bette...
2011-07-27 Michael SullivanMake trand_bind_1 use create_real_fn_pair.
2011-07-27 Marijn HaverbekeMore thorough check for interior-ness in str_from_ivec
2011-07-27 Marijn HaverbekeStop outputting spurious spaces in ivec types and empty...
2011-07-27 Marijn Haverbeke(belatedly) register a new stable snapshot
2011-07-27 Brian AndersonFix comment placement in compiletest
2011-07-27 Marijn HaverbekeAnother attempt at fixing fast check for the win tinderbox
2011-07-27 Marijn HaverbekeDon't allow globals or immutable locals to be passed...
2011-07-27 Marijn HaverbekeRemove superfluous spaces in pretty-printing of loops
2011-07-27 Marijn HaverbekeSome more obj dtor reformatting
2011-07-27 Marijn HaverbekeFix nil pattern case to handle for parser adjustment
2011-07-27 Marijn HaverbekeMake the pretty-printer output whitespace before obj...
2011-07-27 Marijn HaverbekeRe-format some obj dtors that were messed up by the...
2011-07-27 Marijn HaverbekeImprove pretty-printing of constraints
2011-07-27 Marijn HaverbekeFix python script for fast-check to output valid syntax
2011-07-27 Marijn HaverbekeMake printing of comments inside bindings slightly...
2011-07-27 Marijn HaverbekeNo longer allow 'case' keyword before patterns
2011-07-27 Marijn HaverbekeFix damage done by the pretty-printer
2011-07-27 Marijn HaverbekeReformat for new syntax
2011-07-27 Marijn HaverbekeAdd fuzzer to reformat make target
2011-07-27 Marijn HaverbekeRevert 66c1ca857bf8e
2011-07-27 Marijn HaverbekeRegister transitional snapshot
2011-07-27 Marijn HaverbekeThis time, I'm almost sure it'll work
2011-07-27 Marijn HaverbekeUpdate the parser to accept the new syntax
2011-07-27 Marijn HaverbekeOutput native_name field for native mods when needed
2011-07-27 Marijn HaverbekeHave the pretty-printer parentesize unary ops when...
2011-07-27 Marijn HaverbekeUpdate the pretty-printer to output the new syntax
2011-07-27 Marijn HaverbekeParenthesize ivec types as needed
2011-07-27 Marijn HaverbekeHack to make snap-stage1 actually build incompatible...
2011-07-27 Marijn HaverbekeFix reformat make target
2011-07-27 Marijn HaverbekeAdd missing case for view_item_use in resolve.rs
2011-07-27 Brian AndersonRun compile tests in a way that's safe in a multithread...
2011-07-27 Brian AndersonMake the setenv tests threadsafe(ish)
2011-07-26 Graydon HoareTry to keep the local and its type together when wrappi...
2011-07-26 Graydon HoareProhibit breaking between "let" and "=" in local decls.
2011-07-26 Lindsey KuperClean up long strings and indentation.
2011-07-26 Graydon HoareTrailing whitespace.
2011-07-26 Graydon HoareTidy up fuzzer logic a bit.
2011-07-26 Graydon HoareHandle printing 'auto' occurring in loop-variable context.
2011-07-26 Graydon HoareImprove printing of mod and native mod.
2011-07-26 Graydon HoareHandle hardbreaks at bol slightly better, including...
2011-07-26 Graydon HoareHandle column-zero \n explicitly rather than looking...
2011-07-26 Graydon HoareConsume EOL after line comment.
2011-07-26 Brian AndersonDump all subprocess output to stdout when running verbo...
2011-07-26 Michael SullivanSome simple cleanup of trans_bind.
2011-07-26 Michael SullivanConvert a bunch of cx.fcx.lcx... paths into bcx_.....
2011-07-26 Michael SullivanAdd a bunch of tests for blocks.
2011-07-26 Michael SullivanInitial implementation of typestate for closures.
2011-07-26 Michael SullivanTranslate anonymous block closures.
2011-07-26 Michael SullivanResolve and typecheck alias-environment-capturing blocks.
2011-07-26 Michael SullivanAdd block and closure protos and parse/pp block and...
2011-07-26 Michael SullivanFix the freevars pass to actually work on top of visit.
2011-07-26 Brian AndersonBase scheduler threads on number of cores. Closes #739
2011-07-26 Brian AndersonClone all data before before putting it in a test closure
2011-07-26 Brian AndersonJoin the process server after running all compile tests
2011-07-26 Brian AndersonRun test process from a dedicated task
2011-07-26 Paul StansiferOops, left whitespace.
2011-07-26 Paul StansiferAdd basic support for blocks and types in macros.
2011-07-26 Marijn HaverbekeConvert all code that uses walk.rs in the straightforwa...
2011-07-26 Marijn HaverbekeAdd 'simple' visiting to visit.rs
2011-07-26 Marijn HaverbekeResolve loop collection expressions in the right scope
2011-07-26 Marijn HaverbekeFix win tinderbox breaking typo
2011-07-26 Marijn HaverbekeDetect duplicate field names in record literals and...
2011-07-26 Marijn HaverbekeRemove tuple support from the compiler
2011-07-26 Marijn HaverbekeFixup test changes
2011-07-26 Marijn HaverbekeProperly parse 'auto' for loop variable types
2011-07-26 Marijn HaverbekeRemove uses of tuples from the test suite
2011-07-26 Marijn HaverbekeRemove all uses of tuples from the compiler and stdlib
2011-07-26 Marijn HaverbekeMake the pretty-printer output new-style syntax for...
2011-07-26 Marijn HaverbekeMake the pretty-printer output new-style syntax for...
2011-07-26 Marijn HaverbekeAdd support for new-style local decls
next