summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2012-11-28librustc: Parse `extern "C" { ... }`. r=brsonPatrick Walton-8/+47
2012-11-27librustc: Implement @mut [T] as the new replacement for @[mut T]Patrick Walton-3/+12
2012-11-26auto_serialize should use explicit refs (fixes #4044)Erick Tryzelaar-2/+2
2012-11-26Remove the crate languageBrian Anderson-183/+237
2012-11-26Add a temporary hack to divert the parser to an alternate fileBrian Anderson-0/+12
2012-11-26syntax: Add a hack to support the int-template patternBrian Anderson-9/+53
2012-11-21libsyntax: Implement `deriving` correctly for type-parameterized structs and ...Patrick Walton-61/+151
2012-11-21libsyntax: Implement deriving via a syntax extension for the `IterBytes` trai...Patrick Walton-123/+416
2012-11-21libsyntax: Fix duplication of items that occurs if `#[deriving_eq]` is applie...Patrick Walton-1/+1
2012-11-21libsyntax: Implement `deriving` for enums with N-ary variants. r=brsonPatrick Walton-40/+153
2012-11-20syntax: switch tt quoter to emit ~[tt], not tt.Graydon Hoare-33/+71
2012-11-20libsyntax: Long line. rs=make-tidyPatrick Walton-1/+1
2012-11-20rustc: Implement "deriving" for monomorphic structs via a syntax extension. r...Patrick Walton-0/+418
2012-11-19rustc: Implement explicit self for Eq and Ord. r=graydonPatrick Walton-7/+1083
2012-11-19Fix parsing of interpolated pathsBrian Anderson-1/+2
2012-11-18Remove unused file_type enum from the parserBrian Anderson-38/+24
2012-11-18Report errors better when failing to open files for sub-parsersBrian Anderson-25/+61
2012-11-18Parse file mods from .rs filesBrian Anderson-24/+56
2012-11-18syntax: Remove cdir_syntax. UnusedBrian Anderson-5/+0
2012-11-18Remove some unused code from lexerBrian Anderson-6/+2
2012-11-17Merge remote-tracking branch 'brson/codemap'Brian Anderson-470/+664
2012-11-16Remove unused MultiByteChar.sum field from codemapBrian Anderson-10/+0
2012-11-16Add some docs to codemapBrian Anderson-13/+48
2012-11-16Remove incorrect comment from codemapBrian Anderson-2/+0
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