summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-11-14Track character and byte positions together in the parserBrian Anderson-34/+42
2012-11-14std: Don't use Drop trait in thread_poolBrian Anderson-4/+1
2012-11-14Convert libstd to use the Drop traitBen Striegel-52/+107
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-161/+285
2012-11-14Camel case all the codemap types except spanBrian Anderson-104/+104
2012-11-14Revert "Convert libstd to use the Drop trait"Brian Anderson-107/+52
2012-11-14rustc: Only strip out the main function when generating test executable, not libBrian Anderson-2/+3
2012-11-14rustc: Generate test code when in the 'test' configBrian Anderson-1/+7
2012-11-14Convert libstd to use the Drop traitBen Striegel-52/+107
2012-11-14Move two fn assignability tests from compile-fail to run-passBrian Anderson-2/+2
2012-11-14Long linesBrian Anderson-1/+2
2012-11-14Remove obsolete const pattern testBrian Anderson-15/+0
2012-11-14librustc: Require the #[derivable] attribute, remove the significance of "imp...Patrick Walton-272/+335
2012-11-14rustc: Implement let assignability. r=nmatsakisPatrick Walton-11/+39
2012-11-14rustc: Allow constants to be used in patterns. r=nmatsakisPatrick Walton-54/+176
2012-11-13Tools should not be build prereqs of tests. Closes #3946Brian Anderson-0/+1
2012-11-13librustc: Stop reexporting all of core in every crate. rs=really-bad-bugPatrick Walton-15/+24
2012-11-13whitespace police 2Graydon Hoare-2/+2
2012-11-13whitespace policeGraydon Hoare-2/+2
2012-11-13rustc: fix pp build breakage.Graydon Hoare-1/+1
2012-11-13librustc: Implement deriving with a unit return type. r=tjcPatrick Walton-67/+235
2012-11-13rustc: add new token-tree based quasiquoter.Graydon Hoare-19/+368
2012-11-13rustc: Remove the case of foo![...] as invocation syntax. foo!(...) and foo!{...Graydon Hoare-2/+2
2012-11-13Revert "`m1!{...}` is now forbidden. Use `m1!(...)` instead."Graydon Hoare-7/+18
2012-11-13cleanup: convert some remaining #foo invocations to foo! form.Graydon Hoare-34/+22
2012-11-12rustc: Make static methods not leak out of traits. r=brsonPatrick Walton-15/+87
2012-11-12Remove unused get_snippet function from codemapBrian Anderson-6/+0
2012-11-12Make it clearer which codemap functions use chars vs. bytesBrian Anderson-20/+23
2012-11-12Objectify the codemapBrian Anderson-193/+195
2012-11-12Merge pull request #3954 from burg/result-chainBrian Anderson-5/+5
2012-11-12Fix Result::chain, Result::chain_err to not require Copy bounds.Brian J. Burg-5/+5
2012-11-12Convert codemap from legacy_exportsBrian Anderson-57/+27
2012-11-12Remove expn_info box typedef from codemapBrian Anderson-8/+11
2012-11-12Reorder codemap declsBrian Anderson-32/+32
2012-11-12Remove CodeMap box typedef from codemapBrian Anderson-48/+50
2012-11-12Reformatting in codemapBrian Anderson-2/+5
2012-11-12Move codemap doc comments to the proper placeBrian Anderson-6/+6
2012-11-12Move filemap ctors to static methodsBrian Anderson-22/+26
2012-11-12Remove filemap box typedef from codemapBrian Anderson-21/+19
2012-11-12Convert most codemap types from records to structsBrian Anderson-34/+52
2012-11-12rustc: Implement floating point literal inference. r=nmatsakisPatrick Walton-46/+363
2012-11-09Add a test for multiple main functionsBrian Anderson-0/+7
2012-11-08xfail-fast run-pass/pub-use-xcrateBrian Anderson-0/+1
2012-11-08std: Eliminate copy warningBrian Anderson-1/+1
2012-11-08WhitespaceBrian Anderson-1/+1
2012-11-08rustc: Fix cross-crate reexports. #3908. r=pcwaltonBrian Anderson-11/+36
2012-11-08Change option::expect to not require a Copy bound, and move instead.Brian J. Burg-4/+5
2012-11-08Merge pull request #3923 from am0d/masterBrian Anderson-5/+63
2012-11-07Fix whitespace issues from previous commits.a_m0d-2/+48
2012-11-07rustc: Support irrefutable patterns in function arguments. r=nmatsakisPatrick Walton-159/+392