about summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2012-11-16syntax: rename quote! to quote_tokens!, add quote_{expr,type,item,pat,stmt}!Graydon Hoare-28/+122
2012-11-16Remove unused types from codemapBrian Anderson-17/+2
2012-11-16Stop tracking CodeMap offsets in the parse session. Big simplificationBrian Anderson-96/+48
2012-11-16Stop storing char positions in CodeMapBrian Anderson-56/+39
2012-11-16Change spans to use byte offsets instead of char offsetsBrian Anderson-88/+160
2012-11-15Remove CodeMap.lookup_byte_posBrian Anderson-5/+0
2012-11-15Convert CodeMap and FileMap to use &self instead of @selfBrian Anderson-17/+17
2012-11-15Add some comments to codemap and lexerBrian Anderson-0/+9
2012-11-15Refactor the lexer to use FilePos typesBrian Anderson-54/+85
2012-11-14Create CodeMap.add_filemapBrian Anderson-2/+6
2012-11-14Factor out some position management code in the lexerBrian Anderson-8/+8
2012-11-14Track character and byte positions together in the parserBrian Anderson-34/+42
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-154/+277
2012-11-14Camel case all the codemap types except spanBrian Anderson-102/+102
2012-11-14librustc: Require the #[derivable] attribute, remove the significance of "imp...Patrick Walton-34/+21
2012-11-13rustc: fix pp build breakage.Graydon Hoare-1/+1
2012-11-13librustc: Implement deriving with a unit return type. r=tjcPatrick Walton-2/+1
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-3/+3
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-162/+167
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-37/+39
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-4/+32
2012-11-07rustc: Support irrefutable patterns in function arguments. r=nmatsakisPatrick Walton-33/+80
2012-11-06Cleanup how we handle proto in types, remove unsound subtypingNiko Matsakis-258/+308
2012-11-05rustc: Implement parsing and typechecking for "once fn"Patrick Walton-20/+88
2012-11-03Remove stage0 stuff that was awaiting snapshotTim Chevalier-49/+0
2012-11-02syntax: Fold macros in default methods. Closes #3911Brian Anderson-1/+7
2012-11-02Fix #1996 (pending snapshot)Tim Chevalier-6/+6
2012-11-01Support #[cfg] on methodsBrian Anderson-0/+1
2012-10-30Fix #1458 (allow paren'd exprs to be the operator in a `do`)Tim Chevalier-1/+1
2012-10-30Preserve parenthesization in the ASTTim Chevalier-177/+80
2012-10-26rustc: Translate monomorphic intra-crate automatically-derived methods that f...Patrick Walton-1/+1
2012-10-26libsyntax: Fix pretty printing of tuple structs. Attempt to put out fire. rs=...Patrick Walton-26/+51
2012-10-25libsyntax: Don't write a ctor ID for struct-like enum variants. rs=rustbotPatrick Walton-1/+1
2012-10-25Merge remote-tracking branch '14427/incoming'Brian Anderson-2/+2
2012-10-25rustc: Translate tuple struct constructorsPatrick Walton-5/+34
2012-10-24Merge branch 'method-vis-parse'Brian Anderson-10/+10
2012-10-24rustc: Implement typechecking for tuple structs. r=nmatsakisPatrick Walton-5/+38