about summary refs log tree commit diff
path: root/src/libsyntax/ext/bytes.rs
AgeCommit message (Expand)AuthorLines
2014-06-18Revert bytes!() docstring change, and fix a typo.Simon Sapin-1/+1
2014-06-18Deprecate the bytes!() macro.Simon Sapin-0/+8
2014-06-13librustc: Fix the issue with labels shadowing variable names by makingPatrick Walton-1/+13
2014-05-18Make bytes!() return 'staticKevin Ballard-6/+27
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-1/+3
2014-05-02syntax: store char literals/tokens as `char`s rather than u32s.Huon Wilson-3/+1
2014-04-16syntax: unify all MacResult's into a single trait.Huon Wilson-3/+3
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-1/+0
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-1/+1
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-0/+1
2014-03-01libsyntax: Mechanically change `~[T]` to `Vec<T>`Patrick Walton-1/+1
2014-02-18Avoid returning original macro if expansion fails.Douglas Young-1/+1
2014-02-08Fixed error starting with uppercasemr.Shu-6/+6
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-2/+2
2014-01-18syntax::ext: replace span_fatal with span_err in many places.Huon Wilson-1/+4
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-5/+5
2013-12-29Start passing around &mut ExtCtxtSteven Fackler-1/+1
2013-12-28Stop using @ExtCtxtSteven Fackler-1/+1
2013-11-26Removed unneccessary `_iter` suffixes from various APIsMarvin Löbel-1/+1
2013-10-08add new enum ast::StrStyle as field to ast::lit_strBenjamin Herr-1/+1
2013-09-16Limit spans in bytes!() error messages to the argument in questionKevin Ballard-10/+10
2013-09-04stop treating char as an integer typeDaniel Micay-2/+4
2013-09-03Modernized a few more types in syntax::astMarvin Löbel-1/+1
2013-09-01Modernized a few type names in rustc and syntaxMarvin Löbel-2/+2
2013-08-03remove obsolete `foreach` keywordDaniel Micay-2/+2
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-2/+2
2013-07-30Added str::char_offset_iter() and str::rev_char_offset_iter()Marvin Löbel-1/+1
2013-07-24Disallow non-comma-delimited arguments to fmt! and bytes!Birunthan Mohanathas-1/+1
2013-06-23vec: remove BaseIter implementationDaniel Micay-1/+1
2013-06-14add IteratorUtil to the preludeDaniel Micay-1/+0
2013-06-09std: replace the str::each* fns/methods with byte iteratorsHuon Wilson-1/+2
2013-05-22syntax/ext: convert all AstBuilder methods to a uniform syntax.Huon Wilson-5/+5
2013-05-22syntax/ext: migrate build.rs functions to AstBuilder methods.Huon Wilson-6/+6
2013-05-22syntax/ext: modernise ext_ctxt to be CamelCase and use new.Huon Wilson-1/+1
2013-05-18Made bytes!() accept a list of string, integer or char literalsMarvin Löbel-5/+50
2013-05-16Implement bytes! syntax extensionSangeun Kim-0/+28