| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-03-10 | Merge commit '574e23ec508064613783cba3d1833a95fd9a5080' into sync-from-ra | Laurențiu Nicola | -69/+155 | |
| 2024-02-18 | Merge commit 'ac998a74b3c8ff4b81c3eeb9a18811d4cc76226d' into sync-from-ra | Laurențiu Nicola | -28/+279 | |
| 2024-02-11 | Merge commit 'ddf105b646c6749a2de2451c9a499a354eec79c2' into sync-from-ra | Laurențiu Nicola | -33/+340 | |
| 2024-01-28 | Merge commit '7219414e81810fd4d967136c4a0650523892c157' into sync-from-ra | Laurențiu Nicola | -8/+8 | |
| 2024-01-25 | Rename the unescaping functions. | Nicholas Nethercote | -2/+2 | |
| `unescape_literal` becomes `unescape_unicode`, and `unescape_c_string` becomes `unescape_mixed`. Because rfc3349 will mean that C string literals will no longer be the only mixed utf8 literals. | ||||
| 2024-01-21 | Merge commit 'a9116523604c998e7781f60d3b5a6f586e0414a9' into sync-from-ra | Laurențiu Nicola | -50/+238 | |
| 2024-01-18 | Rollup merge of #119172 - nnethercote:earlier-NulInCStr, r=petrochenkov | Matthias Krüger | -0/+1 | |
| Detect `NulInCStr` error earlier. By making it an `EscapeError` instead of a `LitError`. This makes it like the other errors produced when checking string literals contents, e.g. for invalid escape sequences or bare CR chars. NOTE: this means these errors are issued earlier, before expansion, which changes behaviour. It will be possible to move the check back to the later point if desired. If that happens, it's likely that all the string literal contents checks will be delayed together. One nice thing about this: the old approach had some code in `report_lit_error` to calculate the span of the nul char from a range. This code used a hardwired `+2` to account for the `c"` at the start of a C string literal, but this should have changed to a `+3` for raw C string literals to account for the `cr"`, which meant that the caret in `cr"` nul error messages was one short of where it should have been. The new approach doesn't need any of this and avoids the off-by-one error. r? ```@fee1-dead``` | ||||
| 2024-01-15 | Merge commit '9d8889cdfcc3aa0302353fc988ed21ff9bc9925c' into sync-from-ra | Laurențiu Nicola | -7/+70 | |
| 2024-01-12 | Detect `NulInCStr` error earlier. | Nicholas Nethercote | -0/+1 | |
| By making it an `EscapeError` instead of a `LitError`. This makes it like the other errors produced when checking string literals contents, e.g. for invalid escape sequences or bare CR chars. NOTE: this means these errors are issued earlier, before expansion, which changes behaviour. It will be possible to move the check back to the later point if desired. If that happens, it's likely that all the string literal contents checks will be delayed together. One nice thing about this: the old approach had some code in `report_lit_error` to calculate the span of the nul char from a range. This code used a hardwired `+2` to account for the `c"` at the start of a C string literal, but this should have changed to a `+3` for raw C string literals to account for the `cr"`, which meant that the caret in `cr"` nul error messages was one short of where it should have been. The new approach doesn't need any of this and avoids the off-by-one error. | ||||
| 2024-01-03 | Merge commit '426d2842c1f0e5cc5e34bb37c7ac3ee0945f9746' into sync-from-ra2 | Laurențiu Nicola | -0/+3 | |
| 2023-12-11 | Merge commit '457b966b171b09a7e57acb710fbca29a4b3526f0' into sync-from-ra | Laurențiu Nicola | -1/+1 | |
| 2023-12-04 | Merge commit 'e402c494b7c7d94a37c6d789a216187aaf9ccd3e' into sync-from-ra | Laurențiu Nicola | -42/+165 | |
| 2023-11-16 | Merge commit '141fc695dca1df7cfc3c9803972ec19bb178dcbc' into sync-from-ra | Laurențiu Nicola | -5/+0 | |
| 2023-11-08 | Merge commit '3b7c7f97e4a7bb253a8d398ee4f8346f6cf2817b' into sync-from-ra | Laurențiu Nicola | -33/+566 | |
| 2023-10-22 | use visibility to check unused imports and delete some stmts | bohan | -2/+1 | |
| 2023-09-18 | Merge commit '258b15c506a2d3ad862fd17ae24eaf272443f477' into sync-from-ra | Laurențiu Nicola | -114/+199 | |
| 2023-08-21 | Merge commit '9b3d03408c66749d56466bb09baf2a7177deb6ce' into sync-from-ra | Laurențiu Nicola | -27/+39 | |
| 2023-08-07 | Merge commit 'baee6b338b0ea076cd7a9f18d47f175dd2ba0e5d' into sync-from-ra | Laurențiu Nicola | -4/+42 | |
| 2023-07-24 | Merge commit '99718d0c8bc5aadd993acdcabc1778fc7b5cc572' into sync-from-ra | Laurențiu Nicola | -160/+43 | |
| 2023-07-17 | Merge commit '37f84c101bca43b11027f30ab0c2852f9325bc3d' into sync-from-ra | Laurențiu Nicola | -4/+114 | |
| 2023-06-19 | Merge commit 'cd3bf9fe51676b520c546460e6d8919b8c8ff99f' into sync-from-ra | Laurențiu Nicola | -6/+11 | |
| 2023-06-05 | Merge commit 'aa9bc8612514d216f84eec218dfd19ab83f3598a' into sync-from-ra | Laurențiu Nicola | -176/+1287 | |
| 2023-03-20 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+8 | |
| 2023-03-13 | :arrow_up: rust-analyzer | Laurențiu Nicola | -16/+492 | |
| 2023-02-20 | :arrow_up: rust-analyzer | Laurențiu Nicola | -232/+376 | |
| 2023-02-13 | :arrow_up: rust-analyzer | Laurențiu Nicola | -55/+396 | |
| 2023-01-09 | :arrow_up: rust-analyzer | arcnmx | -67/+349 | |
| Merge commit '368e0bb32f1178cf162c2ce5f7e10b7ae211eb26' | ||||
| 2022-11-23 | :arrow_up: rust-analyzer | Laurențiu Nicola | -1/+1 | |
| 2022-09-06 | :arrow_up: rust-analyzer | Laurențiu Nicola | -23/+156 | |
| 2022-08-30 | :arrow_up: rust-analyzer | Laurențiu Nicola | -4/+98 | |
| 2022-08-16 | :arrow_up: rust-analyzer | Laurențiu Nicola | -14/+297 | |
| 2022-08-02 | :arrow_up: rust-analyzer | Laurențiu Nicola | -1/+1 | |
| 2022-07-24 | Add 'src/tools/rust-analyzer/' from commit ↵ | Amos Wenger | -0/+35189 | |
| '977e12a0bdc3e329af179ef3a9d466af9eb613bb' git-subtree-dir: src/tools/rust-analyzer git-subtree-mainline: 3c98486a0cdb6d92f0fca34ffb1fd46c0e498653 git-subtree-split: 977e12a0bdc3e329af179ef3a9d466af9eb613bb | ||||
