about summary refs log tree commit diff
path: root/src/libsyntax/ext/build.rs
AgeCommit message (Expand)AuthorLines
2014-09-30Produce a better error for irrefutable `if let` patternsKevin Ballard-1/+1
2014-09-22librustc: Parse and resolve higher-rank lifetimes in traits.Patrick Walton-1/+2
2014-09-18syntax: use an index in CodeMap instead of Gc for ExpnInfo.Eduard Burtescu-2/+2
2014-09-16Fallout from renamingAaron Turon-2/+2
2014-09-14syntax: fix fallout from using ptr::P.Eduard Burtescu-291/+236
2014-09-10Implement tuple and tuple struct indexingP1start-0/+12
2014-08-27Allow *-pointers in PtrTy (fixes #16781)Manish Goregaokar-0/+11
2014-08-26DST coercions and DST structsNick Cameron-10/+1
2014-08-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-2/+2
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-0/+16
2014-08-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-1/+1
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-3/+3
2014-07-31rustrt: Make begin_unwind take a single file/line pointerBrian Anderson-5/+8
2014-07-29syntax: add some more extension helper methodsErick Tryzelaar-0/+52
2014-07-20Implement new mod import sugarJakub Wieczorek-1/+1
2014-07-11Add scaffolding for assigning alpha-numeric codes to rustc diagnosticsJakub Wieczorek-0/+6
2014-07-08Change DST syntax: type -> Sized?Nick Cameron-4/+4
2014-07-03Simplify PatIdent to contain an Ident rather than a PathJohn Clements-2/+1
2014-06-16rustc: Improve span for error about using a method as a field.Kevin Butler-2/+10
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-1/+1
2014-06-13librustc: Fix the issue with labels shadowing variable names by makingPatrick Walton-2/+29
2014-06-11syntax: Move the AST from @T to Gc<T>Alex Crichton-195/+223
2014-06-08Remove the dead code identified by the new lintJakub Wieczorek-12/+3
2014-06-02syntax: Remove use of `pub use` globsklutzy-2/+2
2014-05-26syntax: Add a source field to `Local` for tracking if it comes from `let`s or...Huon Wilson-0/+2
2014-05-24Changes from feedbackSteven Fackler-4/+4
2014-05-24Add AttrId to Attribute_Steven Fackler-2/+4
2014-05-08libsyntax: Remove uses of `~str` from libsyntax, and fix falloutPatrick Walton-1/+3
2014-04-28auto merge of #13791 : lifthrasiir/rust/mod-inner-span, r=huonwbors-2/+3
2014-04-27syntax: `Mod` records the span for inner contents.Kang Seonghoon-2/+3
2014-04-26syntax: ViewItemUse no longer contains multiple view paths.Kang Seonghoon-12/+12
2014-04-24auto merge of #13713 : edwardw/rust/methodcall-span, r=alexcrichtonbors-2/+3
2014-04-23Allow attributes on match armsSteven Fackler-0/+1
2014-04-24Calibrate span for method call error messagesEdward Wang-2/+3
2014-04-23Support unsized types with the `type` keywordNick Cameron-0/+3
2014-04-23Add a span to ast::TyParamNick Cameron-1/+4
2014-04-10Renamed ast::Purity to ast::FnStyle and ast::ImpureFn to ast::NormalFn and up...Kasey Carrothers-1/+1
2014-04-04syntax: remove obsolete mutability from ExprVec and ExprRepeat.Eduard Burtescu-1/+1
2014-04-03syntax: Remove AbiSet, use one AbiAlex Crichton-2/+2
2014-03-30Removed deprecated functions `map` and `flat_map` for vectors and slices.Marvin Löbel-6/+4
2014-03-27serialize: use ResultSean McArthur-0/+48
2014-03-22syntax: Fix fallout of removing get()Alex Crichton-1/+1
2014-03-22Migrate all users of opt_vec to owned_slice, delete opt_vec.Huon Wilson-18/+15
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-2/+0
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-2/+2
2014-03-17De-@ codemap and diagnostic.Eduard Burtescu-1/+1
2014-03-12Changed lists of lifetimes in ast and ty to use Vec instead of OptVec.Felix S. Klock II-6/+6
2014-03-12alpha-rename .ident to .name in Lifetime, including in rustdoc.Felix S. Klock II-2/+2
2014-03-03syntax: make match arms store the expr directly.Huon Wilson-1/+1
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-11/+22