]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2012-11-18 Brian AndersonMerge remote-tracking branch 'brson/codemap'
2012-11-16 Brian AndersonRemove unused MultiByteChar.sum field from codemap
2012-11-16 Brian AndersonAdd some docs to codemap
2012-11-16 Tim ChevalierForbid duplicate supertraits
2012-11-16 Brian AndersonRemove incorrect comment from codemap
2012-11-16 Graydon Hoaresyntax: rename quote! to quote_tokens!, add quote_...
2012-11-16 Brian AndersonRemove unused types from codemap
2012-11-16 Brian AndersonStop tracking CodeMap offsets in the parse session...
2012-11-16 Brian AndersonStop storing char positions in CodeMap
2012-11-16 Brian AndersonChange spans to use byte offsets instead of char offsets
2012-11-16 Graydon Hoarelibrustc: Fastisel dislikes memmove, switch to memcpy...
2012-11-16 Brian Andersonre-xfail two tests
2012-11-16 Tim ChevalierUpdate and un-xfail tests
2012-11-16 Tim ChevalierTypo
2012-11-16 Tim ChevalierUpdate test and un-xfail it
2012-11-16 Tim ChevalierUpdate error message and un-xfail test
2012-11-16 Tim ChevalierUn-xfail working tests
2012-11-16 Brian AndersonFix 'make all' to build all the way through stage2...
2012-11-16 Tim ChevalierUpdate error message and un-xfail test
2012-11-16 Tim ChevalierAdd comments explaining why these tests are xfailed
2012-11-16 Tim ChevalierUn-xfail working test
2012-11-16 Tim ChevalierCheck for duplicate supertraits and forbid them
2012-11-16 Tim ChevalierMake staticness mismatch a fatal error
2012-11-16 Tim ChevalierAdd xfailed test for #3979
2012-11-16 Brian AndersonRemove CodeMap.lookup_byte_pos
2012-11-16 Patrick Waltonlibrustc: Fix cross-crate reexports. rs=blocking-servo
2012-11-16 Tim ChevalierUpdate error message and un-xfail test
2012-11-16 Tim ChevalierAdd comments explaining why these tests fail
2012-11-16 Tim ChevalierUn-xfail working tests
2012-11-16 Tim ChevalierRemove test that tested behavior of unchecked blocks
2012-11-16 Tim ChevalierUpdate error messages and un-xfail
2012-11-16 Tim ChevalierAdd another test for #3177
2012-11-16 Tim ChevalierRemove typestate test
2012-11-16 Tim ChevalierUn-ignore test_from_str and test_parse_buf
2012-11-15 Brian Andersonrt: Don't print backtraces unless the ::rt::backtrace...
2012-11-15 Brian AndersonConvert CodeMap and FileMap to use &self instead of...
2012-11-15 Graydon Hoarerustc: make llloadenv bb optional, kill 1.5% of emitted...
2012-11-15 Brian AndersonAdd some comments to codemap and lexer
2012-11-15 Brian AndersonRefactor the lexer to use FilePos types
2012-11-15 Tim ChevalierRename thread_pool to task_pool
2012-11-15 Tim ChevalierAdd tests for #2190 (xfailed)
2012-11-15 Graydon Hoarert: bump log levels up by one, fix tautological-compare...
2012-11-15 Patrick Waltonlibrustc: Implement (and require) explicit self for...
2012-11-15 Patrick Waltonlibrustc: Pass through extra parameters in automaticall...
2012-11-15 Brian AndersonCreate CodeMap.add_filemap
2012-11-15 Brian AndersonFactor out some position management code in the lexer
2012-11-15 Niko MatsakisInherit mutability through fixed-length vectors.
2012-11-15 Ben StriegelConvert the test suite to use the Drop trait
2012-11-15 Graydon Hoarellvm: fork to disable LiveIRVariabes in GCStrategy.
2012-11-15 Graydon Hoarelibrustc: discard side tables after translation, before...
2012-11-15 Brian AndersonTrack character and byte positions together in the...
2012-11-15 Brian Andersonstd: Don't use Drop trait in thread_pool
2012-11-15 Ben StriegelConvert libstd to use the Drop trait
2012-11-14 Brian AndersonAdd types for character position and byte position...
2012-11-14 Brian AndersonCamel case all the codemap types except span
2012-11-14 Graydon Hoareconfigure: force clang when on freebsd.
2012-11-14 Brian AndersonRevert "Convert libstd to use the Drop trait"
2012-11-14 Brian Andersonrustc: Only strip out the main function when generating...
2012-11-14 Brian Andersonrustc: Generate test code when in the 'test' config
2012-11-14 Ben StriegelConvert libstd to use the Drop trait
2012-11-14 Brian AndersonMove two fn assignability tests from compile-fail to...
2012-11-14 Brian AndersonLong lines
2012-11-14 Brian AndersonRemove obsolete const pattern test
2012-11-14 Patrick Waltonlibrustc: Require the #[derivable] attribute, remove...
2012-11-14 Patrick Waltonrustc: Implement let assignability. r=nmatsakis
2012-11-14 Patrick Waltonrustc: Allow constants to be used in patterns. r=nmatsakis
2012-11-14 Brian AndersonTools should not be build prereqs of tests. Closes...
2012-11-13 Patrick Waltonlibrustc: Stop reexporting all of core in every crate...
2012-11-13 Graydon Hoarewhitespace police 2
2012-11-13 Graydon Hoarewhitespace police
2012-11-13 Graydon Hoarerustc: fix pp build breakage.
2012-11-13 Brian AndersonAdd Chris Pressey to AUTHORS.txt
2012-11-13 Patrick Waltonlibrustc: Implement deriving with a unit return type...
2012-11-13 Graydon Hoarerustc: add new token-tree based quasiquoter.
2012-11-13 Graydon Hoarerustc: Remove the case of foo![...] as invocation synta...
2012-11-13 Graydon HoareRevert "`m1!{...}` is now forbidden. Use `m1!(...)...
2012-11-13 Graydon Hoarecleanup: convert some remaining #foo invocations to...
2012-11-13 Patrick Waltonrustc: Make static methods not leak out of traits....
2012-11-13 Brian AndersonRemove unused get_snippet function from codemap
2012-11-13 Brian AndersonMake it clearer which codemap functions use chars vs...
2012-11-13 Brian AndersonObjectify the codemap
2012-11-13 Brian AndersonMerge remote-tracking branch 'catseye/tutorial-grammar...
2012-11-13 Brian AndersonMerge pull request #3954 from burg/result-chain
2012-11-13 Brian J. BurgFix Result::chain, Result::chain_err to not require...
2012-11-13 Brian AndersonConvert codemap from legacy_exports
2012-11-13 Brian AndersonRemove expn_info box typedef from codemap
2012-11-13 Brian AndersonReorder codemap decls
2012-11-13 Brian AndersonRemove CodeMap box typedef from codemap
2012-11-13 Brian AndersonReformatting in codemap
2012-11-13 Brian AndersonMove codemap doc comments to the proper place
2012-11-13 Brian AndersonMove filemap ctors to static methods
2012-11-13 Brian AndersonRemove filemap box typedef from codemap
2012-11-13 Brian AndersonConvert most codemap types from records to structs
2012-11-12 Patrick Waltonrustc: Implement floating point literal inference....
2012-11-11 Cat's Eye TechnologiesMinor grammatical edits; use preferred nomenclature...
2012-11-09 Brian AndersonAdd a test for multiple main functions
2012-11-09 Brian Andersonxfail-fast run-pass/pub-use-xcrate
2012-11-09 Brian Andersonstd: Eliminate copy warning
2012-11-09 Brian AndersonWhitespace
2012-11-09 Brian Andersonrustc: Fix cross-crate reexports. #3908. r=pcwalton
next