| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-11-23 | :arrow_up: rust-analyzer | Laurențiu Nicola | -895/+2089 | |
| 2022-11-09 | Rollup merge of #104211 - lnicola:rust-analyzer-2022-11-09, r=lnicola | Michael Goulet | -422/+1216 | |
| :arrow_up: rust-analyzer r? ``@ghost`` | ||||
| 2022-11-09 | :arrow_up: rust-analyzer | Laurențiu Nicola | -422/+1216 | |
| 2022-11-09 | Rollup merge of #103919 - nnethercote:unescaping-cleanups, r=matklad | Dylan DPC | -4/+2 | |
| Unescaping cleanups Some code improvements, and some error message improvements. Best reviewed one commit at a time. r? ````@matklad```` | ||||
| 2022-11-05 | Remove `unescape_byte_literal`. | Nicholas Nethercote | -4/+2 | |
| It's easy to just use `unescape_literal` + `byte_from_char`. | ||||
| 2022-11-01 | :arrow_up: rust-analyzer | Laurențiu Nicola | -404/+824 | |
| 2022-10-26 | :arrow_up: rust-analyzer | Laurențiu Nicola | -1584/+2221 | |
| 2022-10-18 | :arrow_up: rust-analyzer | Laurențiu Nicola | -1631/+3127 | |
| 2022-10-11 | rename rustc_allocator_nounwind to rustc_nounwind | Ralf Jung | -1/+1 | |
| 2022-10-11 | :arrow_up: rust-analyzer | Laurențiu Nicola | -1093/+2885 | |
| 2022-10-09 | update to syn-1.0.102 | Andres Suarez | -4/+4 | |
| 2022-10-02 | Fix duplicate usage of `a` article. | Petr Portnov | -2/+2 | |
| This fixes a typo first appearing in #94624 in which test-macro diagnostic uses "a" article twice. Since I searched sources for " a a " sequences, I also fixed the same issue in a few source files where I found it. Signed-off-by: Petr Portnov <gh@progrm-jarvis.ru> | ||||
| 2022-09-27 | rustc_typeck to rustc_hir_analysis | lcnr | -4/+4 | |
| 2022-09-20 | :arrow_up: rust-analyzer | Laurențiu Nicola | -628/+1587 | |
| 2022-09-13 | :arrow_up: rust-analyzer | Laurențiu Nicola | -143/+529 | |
| 2022-09-06 | :arrow_up: rust-analyzer | Laurențiu Nicola | -908/+2934 | |
| 2022-09-01 | Auto merge of #100210 - mystor:proc_macro_diag_struct, r=eddyb | bors | -55/+4 | |
| proc_macro/bridge: send diagnostics over the bridge as a struct This removes some RPC when creating and emitting diagnostics, and simplifies the bridge slightly. After this change, there are no remaining methods which take advantage of the support for `&mut` references to objects in the store as arguments, meaning that support for them could technically be removed if we wanted. The only remaining uses of immutable references into the store are `TokenStream` and `SourceFile`. r? `@eddyb` | ||||
| 2022-08-30 | :arrow_up: rust-analyzer | Laurențiu Nicola | -845/+1985 | |
| 2022-08-23 | :arrow_up: rust-analyzer | Laurențiu Nicola | -625/+2091 | |
| 2022-08-18 | Rollup merge of #100643 - ↵ | Matthias Krüger | -1/+1 | |
| TaKO8Ki:point-at-type-parameter-shadowing-another-type, r=estebank Point at a type parameter shadowing another type This patch fixes a part of #97459. | ||||
| 2022-08-17 | avoid a `&str` to `String` conversion | Takayuki Maeda | -1/+1 | |
| 2022-08-16 | :arrow_up: rust-analyzer | Laurențiu Nicola | -5108/+5774 | |
| 2022-08-09 | :arrow_up: rust-analyzer | Laurențiu Nicola | -281/+1636 | |
| 2022-08-06 | proc_macro/bridge: send diagnostics over the bridge as a struct | Nika Layzell | -55/+4 | |
| This removes some RPC when creating and emitting diagnostics, and simplifies the bridge slightly. After this change, there are no remaining methods which take advantage of the support for `&mut` references to objects in the store as arguments, meaning that support for them could technically be removed if we wanted. The only remaining uses of immutable references into the store are `TokenStream` and `SourceFile`. | ||||
| 2022-08-02 | :arrow_up: rust-analyzer | Laurențiu Nicola | -241/+765 | |
| 2022-07-26 | Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ↵ | Amos Wenger | -210/+624 | |
| ra-sync-and-pms-component | ||||
| 2022-07-24 | Make macros test order-resistant | Amos Wenger | -2/+7 | |
| 2022-07-24 | Sort when iterating through CrateGraph | Amos Wenger | -18/+15 | |
| 2022-07-24 | Sort in DefMap::dump, since HashMap iteration order isn't defined | Amos Wenger | -34/+33 | |
| 2022-07-24 | hir-def tests: sort results before comparing, since FxHashSet iteration ↵ | Amos Wenger | -25/+28 | |
| order isn't guaranteed (And, in fact, it failed on i686) | ||||
| 2022-07-24 | Fix .gitattributes for test_data | Amos Wenger | -224/+225 | |
| 2022-07-24 | Small fixups | Joshua Nelson | -4/+6 | |
| - use `path` instead of `paths` - don't mark rust-analyzer as an optional tool - print the cargo command that's run in the proc-macro-test build script this originally was part of a change to fix `test --stage 0 rust-analyzer`, but I'm going to leave that for a separate PR so it's easier to review. | ||||
| 2022-07-24 | Move cfg attrs up to the mod definitions to disable sourcegen | Amos Wenger | -32/+7 | |
| 2022-07-24 | Disable all source-gen tests at compile time | Amos Wenger | -5/+63 | |
| 2022-07-24 | Don't run slow tests in Rust CI, only RA CI | Amos Wenger | -3/+4 | |
| 2022-07-24 | Add 'src/tools/rust-analyzer/' from commit ↵ | Amos Wenger | -0/+345854 | |
| '977e12a0bdc3e329af179ef3a9d466af9eb613bb' git-subtree-dir: src/tools/rust-analyzer git-subtree-mainline: 3c98486a0cdb6d92f0fca34ffb1fd46c0e498653 git-subtree-split: 977e12a0bdc3e329af179ef3a9d466af9eb613bb | ||||
| 2022-07-24 | Remove rust-analyzer submodule | Amos Wenger | -11/+0 | |
| 2022-07-19 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+9 | |
| 2022-07-12 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+7 | |
| 2022-07-05 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+7 | |
| 2022-06-28 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+7 | |
| 2022-06-21 | :arrow_up: rust-analyzer | Laurențiu Nicola | -9/+7 | |
| 2022-06-14 | :arrow_up: rust-analyzer | Laurențiu Nicola | -8/+8 | |
| 2022-06-07 | :arrow_up: rust-analyzer | Laurențiu Nicola | -23/+8 | |
| 2022-05-31 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+24 | |
| 2022-05-11 | :arrow_up: rust-analyzer | Laurențiu Nicola | -7/+7 | |
| 2022-05-03 | :arrow_up: rust-analyzer | Laurențiu Nicola | -22/+7 | |
| 2022-04-14 | :arrow_up: rust-analyzer | Laurențiu Nicola | -31/+16 | |
| 2022-04-05 | :arrow_up: rust-analyzer | Laurențiu Nicola | -16/+31 | |
| 2022-03-29 | :arrow_up: rust-analyzer | Laurențiu Nicola | -24/+16 | |
