about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Collapse)AuthorLines
2014-01-27Demote self to an (almost) regular argument and remove the env param.Eduard Burtescu-37/+33
Fixes #10667 and closes #10259.
2014-01-26auto merge of #11817 : salemtalha/rust/master, r=brsonbors-3/+3
Fixes Issue #11815
2014-01-26Removed all instances of XXX in preparation for relaxing of FIXME ruleSalem Talha-3/+3
2014-01-26Fix privacy fallout from previous changeAlex Crichton-1/+1
2014-01-23Allow trailing commas in argument lists and tuple patternsSeo Sanghyeon-2/+3
2014-01-21[std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behaviorSimon Sapin-3/+3
2014-01-21[std::vec] Rename .last_opt() to .last(), drop the old .last() behaviorSimon Sapin-6/+7
2014-01-21Remove unnecessary parentheses.Huon Wilson-3/+3
2014-01-16auto merge of #11599 : sanxiyn/rust/accurate-span-3, r=luqmanabors-2/+2
2014-01-16Correct span for ExprCall and ExprIndexSeo Sanghyeon-2/+2
2014-01-14auto merge of #11485 : eddyb/rust/sweep-old-rust, r=nikomatsakisbors-57/+41
2014-01-13librustc: Remove `@` pointer patterns from the languagePatrick Walton-56/+64
2014-01-13libsyntax: Make managed box `@` patterns obsoletePatrick Walton-1/+4
2014-01-12Removed remnants of `@mut` and `~mut` from comments and the type system.Eduard Burtescu-57/+41
2014-01-11Removed obsolete 'e' prefix on ty_evec and ty_estr.Eduard Burtescu-4/+4
2014-01-09auto merge of #11055 : pcwalton/rust/placement-box, r=pcwaltonbors-1/+15
r? @nikomatsakis
2014-01-09librustc: Implement placement `box` for GC and unique pointers.Patrick Walton-1/+15
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-387/+381
2014-01-09Start the span for a path in a view_path at the correct place (at the start ↵Nick Cameron-1/+2
of the path, rather than at the start of the view_path).
2014-01-08Renamed Option::map_default and mutate_default to map_or and mutate_or_setMarvin Löbel-2/+2
2014-01-03librustc: Remove `@mut` support from the parserPatrick Walton-8/+4
2014-01-03libsyntax: De-`@mut` `name_idx`Patrick Walton-7/+8
2014-01-03libsyntax: De-`@mut` `StringReader`, `TtReader`, and `reader`Patrick Walton-2/+2
2014-01-03librustc: De-`@mut` the parse sessionPatrick Walton-3/+3
2014-01-03libsyntax: De-`@mut` `ParseSess::included_mod_stack`Patrick Walton-13/+25
2014-01-02libsyntax: Fix test and merge fallout.Patrick Walton-2/+2
2014-01-02libsyntax: Long linePatrick Walton-1/+2
2014-01-02libsyntax: Remove increasingly inaccurate commentPatrick Walton-1/+0
2014-01-02libsyntax: De-`@mut` `Parser::open_braces`Patrick Walton-5/+9
2014-01-02libsyntax: De-`@mut` `Parser::mod_path_stack`Patrick Walton-4/+3
2014-01-02libsyntax: De-`@mut` `Parser::obsolete_set`Patrick Walton-2/+2
2014-01-02libsyntax: De-`@mut` `Parser::restriction`Patrick Walton-7/+7
2014-01-02libsyntax: De-`@mut` `Parser::tokens_consumed`Patrick Walton-3/+3
2014-01-02libsyntax: De-`@mut` `Parser::buffer_start` and `Parser::buffer_end`Patrick Walton-13/+13
2014-01-02libsyntax: De-`@mut` `Parser::buffer`Patrick Walton-3/+3
2014-01-02libsyntax: De-`@mut` `Parser::last_token`Patrick Walton-3/+3
2014-01-02libsyntax: De-`@mut` `Parser::last_span`Patrick Walton-30/+28
2014-01-02libsyntax: De-`@mut` `Parser::span`Patrick Walton-49/+51
2014-01-02libsyntax: De-`@mut` `token` in the parserPatrick Walton-207/+212
2014-01-02libsyntax: De-`@mut` `quote_depth` in the parserPatrick Walton-3/+3
2014-01-02libsyntax: Make the parser mutablePatrick Walton-379/+410
2014-01-01Remove `extern mod foo (name="bar")` syntax, closes #9543Florian Hahn-2/+9
2013-12-19Accept trailing commas in struct patternsAlex Crichton-2/+7
We decided in the 12/10/13 weekly meeting that trailing commas should be accepted pretty much anywhere. They are currently not allowed in struct patterns, and this commit adds support for that. Closes #10392
2013-12-18auto merge of #10915 : alexcrichton/rust/fixes, r=ILyoanbors-0/+1
Just a little cleanup.
2013-12-17Remove obsolete mutability from ast::TySeo Sanghyeon-9/+8
2013-12-15Forbid multiple imports in use statementsAlex Crichton-0/+1
Closes #10911
2013-12-15libsyntax: Implement the new `box` syntax for unique pointers.Patrick Walton-0/+16
2013-12-11Make 'self lifetime illegal.Erik Price-3/+3
Also remove all instances of 'self within the codebase. This fixes #10889.
2013-12-11auto merge of #10808 : kballard/rust/use-braces, r=alexcrichtonbors-0/+15
This fixes #10806.
2013-12-10Support imports of the form `use {foo,bar}`Kevin Ballard-0/+15
This fixes #10806.