about summary refs log tree commit diff
path: root/src/test/ui/parser
AgeCommit message (Expand)AuthorLines
2020-02-24parse: recover `default` on free items.Mazdak Farrokhzad-5/+180
2020-02-24add `Span` to `ast::Defaultness::Default`.Mazdak Farrokhzad-8/+24
2020-02-22Use multipart suggestionDavid Ross-53/+229
2020-02-22Add more double cast + method call testsDavid Ross-22/+105
2020-02-22Add note regarding argument orderingvarkor-0/+4
2020-02-22Move generic arg / param validation to `create_substs_for_generic_args`varkor-8/+10
2020-02-22parse: allow `type Foo: Ord` syntactically.Mazdak Farrokhzad-3/+103
2020-02-18Rollup merge of #69236 - Centril:mut-parens-at-recovery, r=estebankMazdak Farrokhzad-11/+21
2020-02-18Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkovMazdak Farrokhzad-100/+680
2020-02-18Rollup merge of #69192 - JohnTitor:add-tests, r=CentrilDylan DPC-0/+54
2020-02-17parse: recover `mut (x @ y)` as `(mut x @ mut y)`.Mazdak Farrokhzad-11/+21
2020-02-17Auto merge of #69129 - Centril:macro-legacy-errors, r=petrochenkovbors-0/+21
2020-02-15Fix test stderr after rebasing on master.David Ross-2/+2
2020-02-15Remove trailing whitespaceDavid Ross-3/+3
2020-02-15Add more error cases to issue 35813 testsDavid Ross-58/+225
2020-02-15Parse & reject postfix operators after castsDavid Ross-0/+137
2020-02-15reject assoc statics & extern consts during parsingMazdak Farrokhzad-67/+154
2020-02-15fuse extern & associated item parsing up to defaultnessMazdak Farrokhzad-21/+25
2020-02-15parse extern constsMazdak Farrokhzad-14/+46
2020-02-15parse associated statics.Mazdak Farrokhzad-15/+197
2020-02-15ast/parser: fuse `static` & `const` grammars in all contexts.Mazdak Farrokhzad-46/+122
2020-02-15ast: make `= <expr>;` optional in free statics/consts.Mazdak Farrokhzad-0/+104
2020-02-16Add test for issue-62894Yuki Okushi-0/+54
2020-02-15ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`.Mazdak Farrokhzad-4/+99
2020-02-14Suggest a comma if a struct initializer field fails to parseAaron Hill-2/+3
2020-02-13parser: misc small item related improvements & cleanups.Mazdak Farrokhzad-84/+88
2020-02-13parser: unify item list parsing.Mazdak Farrokhzad-14/+25
2020-02-13macro_legacy_warnings -> errorMazdak Farrokhzad-0/+21
2020-02-13parser: add test for 'extern crate async'Mazdak Farrokhzad-0/+12
2020-02-13ast_validation: tweak diagnostic outputMazdak Farrokhzad-20/+20
2020-02-13parser: fuse free `fn` parsing together.Mazdak Farrokhzad-33/+79
2020-02-13parser_fn_front_matter: allow `const .. extern`Mazdak Farrokhzad-45/+50
2020-02-13IsAsync -> enum Async { Yes { span: Span, .. }, No }Mazdak Farrokhzad-4/+12
2020-02-12Rollup merge of #68981 - estebank:silence, r=davidtwcoDylan DPC-6/+6
2020-02-11Auto merge of #68929 - matprec:consistent-issue-references, r=Dylan-DPCbors-4/+4
2020-02-10review comment: wordingEsteban Küber-6/+6
2020-02-10Rollup merge of #69014 - dwrensha:fix-68890, r=CentrilDylan DPC-0/+24
2020-02-09[parser] change an instance of span_bug() to struct_span_err() to avoid ICEDavid Renshaw-0/+24
2020-02-10parser: Keep current and previous tokens preciselyVadim Petrochenkov-2/+2
2020-02-09--bless --compare-mode=nllMatthias Prechtl-4/+4
2020-02-06rustc_macros: don't limit the -Zmacro-backtrace suggestion to extern macros.Eduard-Mihai Burtescu-0/+22
2020-02-06Rollup merge of #68845 - dwrensha:fix-68783, r=estebankDylan DPC-0/+0
2020-02-05ast_validation: fix visiting bug.Mazdak Farrokhzad-0/+21
2020-02-04stop using BytePos for computing spans in librustc_parse/parser/mod.rsDavid Renshaw-0/+0
2020-02-05parser: merge `fn` grammars wrt. bodies & headersMazdak Farrokhzad-20/+387
2020-02-03Auto merge of #68735 - JohnTitor:fix-ice-0202, r=estebankbors-0/+0
2020-02-02Rollup merge of #68764 - Centril:self-semantic, r=petrochenkovMazdak Farrokhzad-4/+365
2020-02-02parser: address review comments re. `self`.Mazdak Farrokhzad-76/+87
2020-02-02parser: move restrictions re. `self` to `ast_validation`.Mazdak Farrokhzad-0/+350
2020-02-02Rollup merge of #68681 - bobrippling:fix-matched-angle-brackets, r=CentrilYuki Okushi-0/+46