about summary refs log tree commit diff
path: root/src/libsyntax/parse/comments.rs
AgeCommit message (Expand)AuthorLines
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-13/+13
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-9/+15
2014-04-06De-~[] Reader and WriterSteven Fackler-1/+1
2014-03-31syntax: Switch field privacy as necessaryAlex Crichton-5/+5
2014-03-30Removed deprecated functions `map` and `flat_map` for vectors and slices.Marvin Löbel-1/+1
2014-03-28Used inherited mutability in lexer::Reader.Eduard Burtescu-32/+30
2014-03-20syntax: Tidy up parsing the new attribute syntaxAlex Crichton-7/+5
2014-03-20Added new attribute syntax with backward compatibility.Daniel Fagnan-2/+6
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-17De-@ codemap and diagnostic.Eduard Burtescu-2/+2
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-5/+6
2014-03-01libsyntax: Mechanically change `~[T]` to `Vec<T>`Patrick Walton-18/+18
2014-02-27Fix a pretty printer crash on `/***`.Chris Morgan-1/+1
2014-02-14Refactored ast_map and friends, mainly to have Paths without storing them.Eduard Burtescu-2/+1
2014-02-08syntax: convert the lexer to use Option<char> over transmute(-1).Huon Wilson-22/+22
2014-02-07Removed @self and @Trait.Eduard Burtescu-18/+18
2014-02-03syntax: Remove io_error usageAlex Crichton-1/+2
2014-02-02libsyntax: De-`@str` pathnamesPatrick Walton-1/+1
2014-02-02librustc: Stop using `@str` for source.Patrick Walton-1/+1
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-1/+0
2014-01-25Uppercase numeric constantsChris Wong-2/+2
2014-01-21[std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr...Simon Sapin-1/+1
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-29/+29
2014-01-03librustc: De-`@mut` the span handlerPatrick Walton-1/+1
2014-01-03libsyntax: De-`@mut` `StringReader`, `TtReader`, and `reader`Patrick Walton-11/+11
2014-01-03libsyntax: De-`@mut` `StringReader::curr`Patrick Walton-22/+23
2014-01-03libsyntax: De-`@mut` `StringReader::col`Patrick Walton-2/+2
2014-01-03libsyntax: De-`@mut` `StringReader::last_pos`Patrick Walton-5/+9
2014-01-01syntax::diagnostic: Remove unnecessary traitsklutzy-1/+1
2013-12-04std::str: remove from_utf8.Huon Wilson-1/+1
2013-11-26libsyntax: Remove all non-`proc` `do` syntax.Patrick Walton-5/+3
2013-11-26Removed unneccessary `_iter` suffixes from various APIsMarvin Löbel-4/+4
2013-11-11Move std::rt::io to std::ioAlex Crichton-1/+1
2013-10-28Remove the extension traits for Readers/WritersAlex Crichton-2/+1
2013-10-24Remove even more of std::ioAlex Crichton-3/+4
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-16/+16
2013-09-30syntax: Remove usage of fmt!Alex Crichton-16/+16
2013-09-25rustdoc: Improve comment strippingAlex Crichton-15/+40
2013-09-20Implement a web backend for rustdoc_ngAlex Crichton-3/+1
2013-09-05Rename str::from_bytes to str::from_utf8, closes #8985Florian Hahn-1/+1
2013-08-11libsyntax: Update from `@Object` to `@mut Object` as requiredNiko Matsakis-2/+2
2013-08-10std: Rename Iterator.transform -> .mapErick Tryzelaar-1/+1
2013-08-03remove obsolete `foreach` keywordDaniel Micay-2/+2
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-2/+2
2013-07-20syntax: modernise attribute handling in syntax::attr.Huon Wilson-3/+3
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-1/+3
2013-06-28librustc: Remove the broken overloaded assign-ops from the language.Patrick Walton-3/+3
2013-06-25great renaming propagation: syntaxCorey Richardson-5/+3
2013-06-16Do not strip leading whitespace when parsing doc comments.SiegeLord-23/+65