bors[bot] f5c069c9d9
Merge #11894
11894: complete pattern args based on type name r=Veykril a=cameron1024

Addresses #11892 

Changes function argument completion to cover a case like this:
```rust
struct Foo { bar: i32 }

fn qux(Foo { bar }: Foo) {
  println!("{bar}");
}
```
When completing the function call for `qux`, instead of expanding to `qux(_)`, it will now expand to `qux(foo)` (based on the snake-cased version of the name of the ADT)

Non ADTs are unaffected


Co-authored-by: cameron <cameron.studdstreet@gmail.com>
Co-authored-by: cameron1024 <cameron.studdstreet@gmail.com>
2022-04-04 13:06:51 +00:00
..
2022-03-22 17:42:24 +01:00
2022-03-22 17:42:24 +01:00
2022-04-02 01:42:21 +02:00
2022-04-03 12:42:52 +00:00
2022-04-04 13:06:51 +00:00
2022-04-03 18:46:45 +00:00
2022-03-22 17:42:24 +01:00
2022-03-22 17:42:24 +01:00
2022-03-25 15:30:52 +01:00
2022-03-22 17:42:24 +01:00
2022-03-22 17:42:24 +01:00
2022-04-03 12:03:46 +00:00
2022-03-22 17:42:24 +01:00
2022-04-03 13:42:15 +00:00
2022-03-23 20:20:09 +00:00
2022-03-22 17:42:24 +01:00
2022-03-22 17:42:24 +01:00
2022-03-22 17:42:24 +01:00
2022-03-22 17:42:24 +01:00