about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
AgeCommit message (Expand)AuthorLines
2014-07-09syntax: De-doc comment to fix nightliesAlex Crichton-50/+50
2014-07-09ast: make Name its own typeCorey Richardson-5/+21
2014-07-09syntax: don't parse numeric literals in the lexerCorey Richardson-2/+30
2014-07-09ast: add an `as_str` method to IdentCorey Richardson-0/+7
2014-07-09syntax: use a better Show impl for IdentCorey Richardson-1/+7
2014-07-09syntax: doc comments all the thingsCorey Richardson-178/+188
2014-07-08carry self ident forward through re-parsingJohn Clements-7/+8
2014-07-08commentsJohn Clements-0/+1
2014-07-08auto merge of #15493 : brson/rust/tostr, r=pcwaltonbors-3/+3
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-3/+3
2014-07-08Change DST syntax: type -> Sized?Nick Cameron-8/+6
2014-07-04comments onlyJohn Clements-1/+3
2014-07-04comments, whitespace, rename NameFinderContext to PatIdentFinderJohn Clements-6/+12
2014-07-03Simplify PatIdent to contain an Ident rather than a PathJohn Clements-3/+3
2014-06-27working on hygieneJohn Clements-0/+1
2014-06-25revive old commented-out test cases as ignored test cases for hygieneJohn Clements-0/+1
2014-06-25auto merge of #15160 : alexcrichton/rust/remove-f128, r=brsonbors-1/+0
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-4/+2
2014-06-24Remove the quad_precision_float feature gateAlex Crichton-1/+0
2014-06-17Add a b'x' byte literal of type u8.Simon Sapin-0/+1
2014-06-16Update repo locationBrian Anderson-1/+1
2014-06-16rustc: Improve span for error about using a method as a field.Kevin Butler-1/+1
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-1/+1
2014-06-13libsyntax: Allow `+` to separate trait bounds from objects.Patrick Walton-0/+2
2014-06-13Introduce VecPerParamSpace and use it to represent sets of types andNiko Matsakis-8/+0
2014-06-11syntax: Move the AST from @T to Gc<T>Alex Crichton-73/+74
2014-06-10auto merge of #14696 : jakub-/rust/dead-struct-fields, r=alexcrichtonbors-0/+9
2014-06-09librustc: Implement sugar for the `FnMut` traitPatrick Walton-0/+7
2014-06-08Add detection of dead struct fieldsJakub Wieczorek-0/+9
2014-06-06Move Def out of syntax crate, where it does not belongNiko Matsakis-43/+0
2014-06-01std: Drop Total from Total{Eq,Ord}Alex Crichton-82/+82
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-85/+85
2014-05-30libsyntax: Fix snake_case errors.Kevin Butler-0/+1
2014-05-29auto merge of #14483 : ahmedcharles/rust/patbox, r=alexcrichtonbors-1/+1
2014-05-28Add AST node for pattern macrosKeegan McAllister-1/+2
2014-05-27Rename PatUniq to PatBox. Fixes part of #13910.Ahmed Charles-1/+1
2014-05-26syntax: Add a source field to `Local` for tracking if it comes from `let`s or...Huon Wilson-0/+9
2014-05-24Add AttrId to Attribute_Steven Fackler-0/+4
2014-05-23syntax: Clean out obsolete syntax parsingAlex Crichton-0/+1
2014-05-16libserialize: Remove all uses of `~str` from `libserialize`.Patrick Walton-1/+1
2014-05-15Updates with core::fmt changesAlex Crichton-3/+3
2014-05-13syntax: Fix printing INT64_MINAlex Crichton-2/+4
2014-05-06rustc: Enable writing "unsafe extern fn() {}"Alex Crichton-2/+0
2014-05-04auto merge of #13898 : nikomatsakis/rust/type-bounds-b, r=acrichtobors-1/+2
2014-05-03Temporary patch to accept arbitrary lifetimes (behind feature gate) in bound ...Niko Matsakis-1/+2
2014-05-02syntax: store char literals/tokens as `char`s rather than u32s.Huon Wilson-1/+1
2014-04-28auto merge of #13791 : lifthrasiir/rust/mod-inner-span, r=huonwbors-3/+15
2014-04-27syntax: `Mod` records the span for inner contents.Kang Seonghoon-3/+15
2014-04-26syntax: ViewItemUse no longer contains multiple view paths.Kang Seonghoon-1/+1
2014-04-24auto merge of #13713 : edwardw/rust/methodcall-span, r=alexcrichtonbors-1/+1