summary refs log tree commit diff
path: root/src/libsyntax/parse
AgeCommit message (Expand)AuthorLines
2013-03-11Implement vector destructuring from tailSeo Sanghyeon-15/+25
2013-03-09Remove @ast::Region and replace with @ast::Lifetime.Niko Matsakis-91/+80
2013-03-08Fix dvec-related fallout in testsAlex Crichton-3/+3
2013-03-07librustc: Stop parsing `assert`.Patrick Walton-3/+9
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-15/+15
2013-03-07librustc: Remove record patterns from the compilerPatrick Walton-5/+11
2013-03-07libsyntax: Remove struct literal expressions from the compilerPatrick Walton-29/+1
2013-03-07librustc: Remove structural record types from the compilerPatrick Walton-2/+2
2013-03-07libsyntax: Stop parsing structural record typesPatrick Walton-0/+7
2013-03-07add deriving_eq for tokensJohn Clements-273/+2
2013-03-06auto merge of #5255 : jbclements/rust/remove-parse-value-ident, r=graydonbors-40/+16
2013-03-06Permit either foo/&self or foo<'self>Niko Matsakis-9/+33
2013-03-06finish removing parse_value_identJohn Clements-15/+7
2013-03-06removed unused abstraction over paths and value_pathsJohn Clements-25/+9
2013-03-05libsyntax: Separate multiple inherited traits with `+`Patrick Walton-1/+1
2013-03-04Adding missing imports for tests, and gate off othersAlex Crichton-1/+0
2013-03-04Remove unused imports throughout src/Alex Crichton-20/+0
2013-03-03libsyntax: add &self to parser methodsErick Tryzelaar-261/+303
2013-03-02librustc: Stop parsing `fn@`, `fn~`, and `fn&`Patrick Walton-34/+3
2013-03-02libsyntax: Remove `fn@`, `fn~`, and `fn&` from libsyntax. rs=defunPatrick Walton-2/+2
2013-03-02librustc: Forbid chained imports and fix the logic for one-level renaming imp...Patrick Walton-1/+1
2013-03-02Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-10/+6
2013-03-01Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-6/+6
2013-03-02Remove REC, change related tests/docsJihyun Yu-10/+6
2013-03-01Avoid calling to_vec() unnecessarily in parser.Niko Matsakis-6/+6
2013-03-01Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-3/+11
2013-02-28Remove legacy object creation mode, and convert remaining uses of itNiko Matsakis-1/+1
2013-02-28Fix implicit leaks of imports throughout librariesAlex Crichton-2/+10
2013-02-28Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-1/+5
2013-02-28Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-163/+123
2013-02-27auto merge of #5155 : bstrie/rust/dedrop, r=pcwaltonbors-1/+5
2013-02-27auto merge of #5141 : nikomatsakis/rust/region-syntax-expl-lifetimes, r=nikom...bors-158/+125
2013-02-27Introduce lifetime declarations into the lists of type parameters.Niko Matsakis-158/+125
2013-02-27Turn old `drop` blocks into `Drop` traitsBen Striegel-1/+5
2013-02-27Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-66/+139
2013-02-27librustc: Forbid `pub` or `priv` before trait implementationsPatrick Walton-7/+21
2013-02-27libsyntax: Forbid mutable vectors. rs=demutingPatrick Walton-0/+15
2013-02-27libsyntax: Forbid `~mut` and `~const`. rs=demutingPatrick Walton-2/+6
2013-02-26libsyntax: add some more explicit copiesErick Tryzelaar-79/+139
2013-02-26libsyntax: add explicit copiesErick Tryzelaar-61/+101
2013-02-26libsyntax: change closures to take fn(&Parser)Erick Tryzelaar-33/+33
2013-02-26auto merge of #5120 : jbclements/rust/macros-have-scope, r=pcwaltonbors-21/+67
2013-02-26Macros now leave scopeJohn Clements-21/+67
2013-02-26libsyntax: Stop parsing `~mut`Patrick Walton-1/+13
2013-02-26libsyntax: change binop_to_str to be pureErick Tryzelaar-1/+1
2013-02-26libsyntax: change token_is_word to take &TokenErick Tryzelaar-1/+1
2013-02-26libsyntax: change Parser::unexpected_last to take &TokenErick Tryzelaar-4/+4
2013-02-26libsyntax: more minor cleanupErick Tryzelaar-32/+32
2013-02-26libsyntax: change token fns to take &TokenErick Tryzelaar-39/+39
2013-02-26libsyntax: change token::to_str to take &TokenErick Tryzelaar-40/+46