| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -2/+0 | |
| 2020-02-24 | parse: tweak diagnostic wordings | Mazdak Farrokhzad | -1/+1 | |
| 2020-02-24 | parser: tweak unmatched wording | Mazdak Farrokhzad | -1/+1 | |
| 2020-02-13 | parser: introduce `parse_item_kind` as central `ItemInfo` logic. | Mazdak Farrokhzad | -2/+1 | |
| this also extracts macro item parsers. | ||||
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2017-11-24 | Merge cfail and ui tests into ui tests | Oliver Schneider | -1/+1 | |
| 2017-03-22 | Add diagnostic for incorrect `pub (restriction)` | Esteban Küber | -0/+13 | |
| Given the following statement ```rust pub (a) fn afn() {} ``` Provide the following diagnostic: ```rust error: incorrect restriction in `pub` --> file.rs:15:1 | 15 | pub (a) fn afn() {} | ^^^^^^^ | = help: some valid visibility restrictions are: `pub(crate)`: visible only on the current crate `pub(super)`: visible only in the current module's parent `pub(in path::to::module)`: visible only on the specified path help: to make this visible only to module `a`, add `in` before the path: | pub (in a) fn afn() {} ``` Remove cruft from old `pub(path)` syntax. | ||||
