summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2012-08-06rustc: Implement functional record update for structsPatrick Walton-11/+30
2012-08-05syntax: Stop parsing alts without arrowsBrian Anderson-6/+2
2012-08-05Switch alts to use arrowsBrian Anderson-1784/+1687
2012-08-03rustc: Merge fn& and fn in favor of fn&.Patrick Walton-18/+13
2012-08-03rustc: Parse and typecheck repeating vector expressions; e.g. [ 0, ..512 ]Patrick Walton-32/+90
2012-08-03libsyntax: Fix trailing whitespacePatrick Walton-1/+1
2012-08-03rustc: Parse, serialize, and deserialize trait inheritancePatrick Walton-6/+31
2012-08-03rustc: Add the notion of inherited visibilityPatrick Walton-51/+65
2012-08-03rustc: Remove all fixed-length strings from our codebasePatrick Walton-10/+10
2012-08-02Purge placement new; Make borrowck know about unary move.Niko Matsakis-30/+3
2012-08-02Revert "Remove "iface" from keyword table."Lindsey Kuper-1/+1
2012-08-02Remove "iface" from keyword table.Lindsey Kuper-1/+1
2012-08-02Shift writer_util to a derived impl attached to the writer traitGraydon Hoare-2/+2
2012-08-02Make typeck::collect aware of provided methods in traits.Lindsey Kuper-0/+12
2012-08-02Extend ast_map to know about method declarations in traits.Michael Sullivan-10/+35
2012-08-02Remove modes from map API and replace with regions.Niko Matsakis-30/+41
2012-08-02Allow `macro_rules! m { (...) => ... }`Paul Stansifer-2/+7
2012-08-02Allow interpolations of all the nt_*s.Paul Stansifer-11/+37
2012-08-01syntax: Remove 'ret'Brian Anderson-1/+1
2012-08-01Convert ret to returnBrian Anderson-600/+626
2012-08-01syntax: Allow any block-like expr to be used as alt arm w/o comma separatorBrian Anderson-34/+36
2012-08-01libsyntax: Use the keyword "copy" for copy-mode bindings instead of the +.Patrick Walton-16/+8
2012-08-01Clean out transitional lint.Graydon Hoare-6/+1
2012-08-01Working on documentation of pipes.Eric Holk-0/+34
2012-08-01libsyntax: Fix a parsing problem with the temporary syntax for by-value patte...Patrick Walton-2/+2
2012-07-31rustc: Parse by-reference pattern bindings with the "ref" keywordPatrick Walton-76/+121
2012-07-31rustc: Implement unary move. Closes #917.Patrick Walton-7/+15
2012-07-31Introduce 'return', 'match' and 'module' as synonymsBrian Anderson-13/+27
2012-07-31syntax: Rename 'module' extension to 'module_path'Brian Anderson-1/+1
2012-07-31rustc: Check self types in method lookup; allow required trait methods to hav...Patrick Walton-1/+3
2012-07-31syntax: More tweaks to make alt arrows parse and print correctlyBrian Anderson-42/+47
2012-07-31accept naked exprs with commas in pattern armsNiko Matsakis-6/+42
2012-07-31Now you can use whatever delimiter you want to invoke syntax extensions.Paul Stansifer-17/+34
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-9/+10
2012-07-31Avoid accidentally printing floating point numbers as `10.f`.Paul Stansifer-1/+7
2012-07-31Fix pretty-printer breakage: `1000f` -> `1000`.Paul Stansifer-1/+1
2012-07-31Build fix: debug![ to debug!{Ben Blum-1/+1
2012-07-30libsyntax: Parse self types in methodsPatrick Walton-17/+174
2012-07-30Frontend bits for #2317, general const-expr classification.Graydon Hoare-0/+13
2012-07-30Fix pretty-printing of consecutive idents.Paul Stansifer-6/+12
2012-07-30Allow single quote to be escaped in strings.Paul Stansifer-0/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-219/+219
2012-07-30Pretty-print token trees.Paul Stansifer-13/+38
2012-07-30Improve some documentation.Paul Stansifer-14/+20
2012-07-30Feed the interner to the pretty-printer, in anticipation of pretty-printing t...Paul Stansifer-4/+5
2012-07-30Work around bug #2935 by unautounboxing.Paul Stansifer-7/+10
2012-07-30Let's give that binder a name that's not incredibly confusing.Paul Stansifer-2/+2
2012-07-30Impl-ize interner.Paul Stansifer-49/+47
2012-07-30Rename `#mod` -> `#module` to not collide with the keyword.Paul Stansifer-3/+6
2012-07-30syntax: Fix semicolon printing. Closes #3036Brian Anderson-1/+1