summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
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
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