aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok
Commit message (Collapse)AuthorAgeFilesLines
* Fix parser tests for 1.53Lukas Wirth2021-06-1719-39/+39
|
* Update ungrammarJonas Schievink2021-06-1116-211/+239
|
* Parse const param defaultsJonas Schievink2021-04-292-0/+99
|
* Correctly parse negated literals as const argsJonas Schievink2021-04-292-0/+31
|
* Parse outer atttributes for RecordPatFieldLukas Wirth2021-04-212-6/+53
|
* hir_ty: Expand macros at type positioncynecx2021-04-171-23/+25
|
* Correctly parse attributes on fn parametersJonas Schievink2021-03-171-10/+10
|
* Specialization for async traitsArnaud2021-02-154-0/+88
|
* Parse `impl const Trait`Lukas Wirth2021-01-182-0/+25
|
* Wrap remaining self/super/crate in Name{Ref}Lukas Wirth2021-01-158-38/+86
|
* Handle self/super/crate in PathSegment as NameRefLukas Wirth2021-01-158-11/+22
|
* Add test for yield_exprDaiki Ihara2021-01-152-0/+32
|
* Merge #7218bors[bot]2021-01-102-50/+50
|\ | | | | | | | | | | | | | | 7218: Fix typos r=Veykril a=regexident Apart from the very last commit on this PR (which fixes a public type's name) all changes are non-breaking. Co-authored-by: Vincent Esche <[email protected]>
| * Updated tests via `cargo xtask codegen`Vincent Esche2021-01-102-50/+50
| |
* | Allow `true` and `false` keywords in const genericsCallym2021-01-102-10/+20
|/
* Fix macro_rules not accepting brackets or parenthesesLukas Wirth2020-12-242-0/+59
|
* Parse const effect blockLukas Wirth2020-12-232-0/+24
|
* Parse ConstBlockPatLukas Wirth2020-12-232-0/+80
|
* Merge #6965bors[bot]2020-12-213-10/+61
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6965: Properly attach attributes to Param instead of parent ParamList r=matklad a=Veykril Fixes #2783, fixes #2781 The problem with `let _a = [0,#[cfg(feature = "L")]0];` has already been fixed some time ago it seems: <details> <summary>Syntax Tree for the const item</summary> ``` [email protected] [email protected] "let" [email protected] " " [email protected] [email protected] [email protected] "_a" [email protected] " " [email protected] "=" [email protected] " " [email protected] [email protected] "[" [email protected] [email protected] "0" [email protected] "," [email protected] [email protected] [email protected] "#" [email protected] "[" [email protected] [email protected] [email protected] [email protected] "cfg" [email protected] [email protected] "(" [email protected] "feature" [email protected] " " [email protected] "=" [email protected] " " [email protected] "\"L\"" [email protected] ")" [email protected] "]" [email protected] "0" [email protected] "]" [email protected] ";" ``` </details> Co-authored-by: Lukas Wirth <[email protected]>
| * Parse attributes in tuple expressionsLukas Wirth2020-12-202-0/+51
| |
| * Properly attach attributes to Param instead of parent ParamListLukas Wirth2020-12-201-10/+10
| |
* | Properly parse legacy trait objects with leading ForTypeLukas Wirth2020-12-202-0/+44
|/
* Node-ify lifetimesLukas Wirth2020-12-1616-34/+68
|
* Move to upstream `macro_rules!` modelJonas Schievink2020-12-153-36/+26
|
* Use items can also have doc commentsLukas Wirth2020-12-042-15/+15
|
* Kill RAW_ literalsAleksey Kladov2020-11-061-2/+2
| | | | | Syntactically, they are indistinguishable from non-raw versions, so it doesn't make sense to separate then *at the syntax* level.
* Don't interpret type path as part of visibility.Arif Roktim2020-10-242-0/+56
|
* Rename record_field_pat to record_pat_fieldPavan Kumar Sunkara2020-09-104-0/+0
|
* Align parser names with grammarAleksey Kladov2020-08-132-77/+0
|
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-12306-0/+10065