about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2018-03-18Move raw_identifiers check to the lexer.Lymia Aluysia-4/+1
2018-03-18Feature gate raw identifiers.Lymia Aluysia-1/+4
2018-03-18Initial implementation of RFC 2151, Raw IdentifiersLymia Aluysia-12/+17
2018-03-18Auto merge of #48917 - petrochenkov:import, r=oli-obkbors-80/+36
2018-03-17Cleanup import parsingVadim Petrochenkov-53/+22
2018-03-17Rename `Span::empty` to `Span::shrink_to_lo`, add `Span::shrink_to_hi`Vadim Petrochenkov-1/+1
2018-03-17AST: Keep distinction between `path` and `::path` in imports and visibilitiesVadim Petrochenkov-10/+5
2018-03-17AST: Make renames in imports closer to the sourceVadim Petrochenkov-3/+1
2018-03-17AST/HIR: Clarify what the optional name in extern crate items meanVadim Petrochenkov-13/+7
2018-03-17syntax: Make `_` an identifierVadim Petrochenkov-20/+16
2018-03-16Auto merge of #49051 - kennytm:rollup, r=kennytmbors-1/+5
2018-03-15Disallow &a..=b and box a..=b in pattern.kennytm-2/+27
2018-03-14Implement import renaming with `_` (RFC 2166)Vadim Petrochenkov-1/+5
2018-03-11in which some labels and notes are upgraded to structured suggestionsZack M. Davis-5/+8
2018-03-09Auto merge of #48326 - RalfJung:generic-bounds, r=petrochenkovbors-12/+3
2018-03-08in which parentheses are suggested for should-have-been-tuple-patternsZack M. Davis-5/+39
2018-03-06note a FIXMERalf Jung-0/+1
2018-03-06make bounds on higher-kinded lifetimes a hard error in ast_validationRalf Jung-12/+2
2018-03-06Rollup merge of #48403 - lukaslueg:casted, r=steveklabnikkennytm-1/+1
2018-03-02Rollup merge of #48338 - estebank:match-missing-comma, r=petrochenkovManish Goregaokar-31/+121
2018-03-01Fix spelling s/casted/cast/Lukas Lueg-1/+1
2018-03-01Support parentheses in patterns under feature gateVadim Petrochenkov-26/+40
2018-02-27Diagnostic tweaks (review)Esteban Küber-17/+11
2018-02-27Add label to primary span in some parse errorsEsteban Küber-21/+64
2018-02-27Detect missing `if` blocksEsteban Küber-8/+27
2018-02-27Provide missing comma in match arm suggestionEsteban Küber-2/+36
2018-02-26Auto merge of #48082 - jseyfried:improve_struct_field_hygiene, r=petrochenkovbors-1/+1
2018-02-24Rollup merge of #48490 - petrochenkov:orpat, r=eddybManish Goregaokar-4/+4
2018-02-24Rollup merge of #48481 - Manishearth:dyn-paren, r=petrochenkovManish Goregaokar-5/+9
2018-02-24Rollup merge of #48441 - petrochenkov:exty, r=estebankManish Goregaokar-1/+1
2018-02-24Rollup merge of #48356 - estebank:unsafe-without-braces, r=nikomatsakisManish Goregaokar-0/+2
2018-02-24Implement multiple patterns with `|` in `if let` and `while let`Vadim Petrochenkov-4/+4
2018-02-23parse `dyn (Foo)` as a trait objectManish Goregaokar-5/+9
2018-02-23Rollup merge of #48083 - jseyfried:improve_tuple_struct_field_access_hygiene,...Manish Goregaokar-5/+3
2018-02-23Auto merge of #47799 - topecongiro:fix-span-of-visibility, r=petrochenkovbors-19/+34
2018-02-23Fix parsing of extern paths in types and poly-traitsVadim Petrochenkov-1/+1
2018-02-19When encountering invalid token after `unsafe`, mention `{`Esteban Küber-0/+2
2018-02-17Fix span bug.Jeffrey Seyfried-1/+1
2018-02-17fix more typos found by codespell.Matthias Krüger-2/+2
2018-02-18Change ast::Visibility to Spanned typeSeiichi Uchida-22/+28
2018-02-18Add a span field to Visibility::RestrictedSeiichi Uchida-2/+10
2018-02-18Add a closing parenthesis to the span of Visibility::CrateSeiichi Uchida-2/+3
2018-02-11Continue parsing function after finding `...` argEsteban Küber-5/+16
2018-02-08Fix span bug.Jeffrey Seyfried-5/+3
2018-02-07Rollup merge of #47613 - estebank:rustc_on_unimplemented, r=nikomatsakisManish Goregaokar-17/+14
2018-02-01Fix test after rebaseEsteban Küber-4/+0
2018-02-01Remove support for `Self` in attributesEsteban Küber-7/+1
2018-02-01Fix testsEsteban Küber-1/+1
2018-02-01Rework `parse_ident_attr`Esteban Küber-25/+26
2018-02-01Add filtering options to `rustc_on_unimplemented`Esteban Küber-5/+11