summary refs log tree commit diff
path: root/src/test/ui/parser
AgeCommit message (Expand)AuthorLines
2020-04-03parse_and_disallow_postfix_after_cast: account for `ExprKind::Err`.Mazdak Farrokhzad-0/+11
2020-03-21can_begin_literal_maybe_minus: `true` on `"-"? lit` NTs.Mazdak Farrokhzad-1/+37
2020-03-09Rollup merge of #69201 - Aaron1011:feature/permit-if-attr, r=CentrilMazdak Farrokhzad-111/+37
2020-03-07Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkovMazdak Farrokhzad-7/+7
2020-03-07Rollup merge of #69708 - estebank:tiny, r=petrochenkovMazdak Farrokhzad-8/+2
2020-03-07Rollup merge of #68985 - daboross:fix-35813, r=CentrilMazdak Farrokhzad-0/+563
2020-03-06bless testsMatthias Krüger-7/+7
2020-03-04Update stderrAaron Hill-59/+35
2020-03-04Move if-attr tests to their own directoryAaron Hill-162/+0
2020-03-04Add run-pass test suggested by @joshtriplettAaron Hill-0/+15
2020-03-04Remove recovery testAaron Hill-30/+0
2020-03-04Test trying to cfg-remove an `if` expressionAaron Hill-0/+13
2020-03-04Test that stmt_expr_attrs properly gates if-attrsAaron Hill-0/+18
2020-03-04Test #[allow(unused)] on `if` expressionAaron Hill-0/+12
2020-03-04Permit attributes on 'if' expressionsAaron Hill-25/+109
2020-03-04On mismatched delimiters, only point at empty blocks that are in the same lineEsteban Küber-8/+2
2020-03-01encode `;` stmt w/o expr as `StmtKind::Empty`Mazdak Farrokhzad-17/+7
2020-02-28Update UI testsGuillaume Gomez-3/+6
2020-02-27Auto merge of #68434 - varkor:astconv-mismatch-error, r=nikomatsakisbors-8/+14
2020-02-24parse: test bad variants wrt. issue 48137.Mazdak Farrokhzad-0/+97
2020-02-24parse: tweak diagnostic wordingsMazdak Farrokhzad-96/+96
2020-02-24parse/ast: move `Defaultness` into variants.Mazdak Farrokhzad-182/+448
2020-02-24parse: `NtItem` -> `parse_item_common`.Mazdak Farrokhzad-0/+34
2020-02-24parser: tweak item kind wordingMazdak Farrokhzad-80/+80
2020-02-24parser: tweak unmatched wordingMazdak Farrokhzad-24/+36
2020-02-24parse: harden `default` test.Mazdak Farrokhzad-56/+96
2020-02-24parse: use `parse_item_common` in `parse_assoc_item_`.Mazdak Farrokhzad-86/+479
2020-02-24parse: use `parse_item_common` in `parse_foreign_item`.Mazdak Farrokhzad-31/+327
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