about summary refs log tree commit diff
path: root/src/libsyntax/ext/quote.rs
AgeCommit message (Expand)AuthorLines
2014-05-27std: Rename strbuf operations to stringRicho Healey-12/+12
2014-05-27std: Remove String's to_ownedRicho Healey-13/+13
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-35/+35
2014-05-23auto merge of #14360 : alexcrichton/rust/remove-deprecated, r=kballardbors-1/+0
2014-05-23syntax: Clean out obsolete syntax parsingAlex Crichton-1/+0
2014-05-22libstd: Remove all uses of `~str` from `libstd`Patrick Walton-3/+3
2014-05-08libsyntax: Remove uses of `~str` from libsyntax, and fix falloutPatrick Walton-47/+55
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-6/+12
2014-05-02syntax: implement ToSource for more things in the quasiquoter.Huon Wilson-0/+23
2014-04-22add support for quadruple precision floating pointDaniel Micay-1/+2
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-16/+16
2014-04-16syntax: unify all MacResult's into a single trait.Huon Wilson-12/+12
2014-03-30Removed deprecated functions `map` and `flat_map` for vectors and slices.Marvin Löbel-3/+3
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-4/+0
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-2/+2
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-8/+14
2014-03-01libsyntax: Mechanically change `~[T]` to `Vec<T>`Patrick Walton-52/+52
2014-02-14Refactored ast_map and friends, mainly to have Paths without storing them.Eduard Burtescu-8/+7
2014-02-08Fixed error starting with uppercasemr.Shu-2/+2
2014-02-02libsyntax: De-`@str` pathnamesPatrick Walton-17/+14
2014-02-02librustc: Stop using `@str` for source.Patrick Walton-11/+11
2014-02-02libsyntax: De-`@str` `to_source`Patrick Walton-41/+42
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-2/+4
2014-01-23Redo exported macro serializationSteven Fackler-1/+0
2014-01-20auto merge of #11660 : sfackler/rust/quote-unused-sp, r=huonwbors-2/+2
2014-01-18Avoid unused variable warning in quote_*!Steven Fackler-2/+2
2014-01-18auto merge of #11607 : alexcrichton/rust/issue-9957, r=cmrbors-1/+1
2014-01-18Forbid unnecessary visibility on view itemsAlex Crichton-1/+1
2014-01-16Load macros from external modulesSteven Fackler-1/+1
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-67/+63
2014-01-02libsyntax: De-`@mut` `quote_depth` in the parserPatrick Walton-1/+1
2014-01-02libsyntax: Make the parser mutablePatrick Walton-9/+5
2013-12-29Start passing around &mut ExtCtxtSteven Fackler-6/+6
2013-12-28Stop using @ExtCtxtSteven Fackler-19/+19
2013-12-11Make 'self lifetime illegal.Erik Price-7/+7
2013-12-10Extend allocation lint for boxing expressionsSeo Sanghyeon-11/+11
2013-12-08Remove dead codesKiet Tran-7/+1
2013-11-28Register new snapshotsAlex Crichton-1/+1
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-5/+5
2013-10-08add new enum ast::StrStyle as field to ast::lit_strBenjamin Herr-1/+1
2013-10-08add token::LIT_STR_RAW(ident, num of # symbols)Benjamin Herr-0/+7
2013-10-01remove the `float` typeDaniel Micay-1/+0
2013-09-30syntax: Remove usage of fmt!Alex Crichton-5/+5
2013-09-06quote_* macros no longer need to be capturingJohn Clements-33/+12
2013-09-06capturing macros now implementedJohn Clements-16/+43
2013-09-04stop treating char as an integer typeDaniel Micay-1/+9
2013-09-03Modernized a few more types in syntax::astMarvin Löbel-17/+17
2013-09-02Renamed syntax::ast::ident -> IdentMarvin Löbel-5/+5
2013-09-01Modernized a few type names in rustc and syntaxMarvin Löbel-17/+17
2013-08-18quote_*! macros take an ExtCtxSteven Fackler-146/+82