| commit | c455e97405694858cc839b519e8eec97b76d12ae | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Thu Dec 31 14:40:23 2020 -0800 |
| committer | David Tolnay <dtolnay@gmail.com> | Thu Dec 31 15:38:19 2020 -0800 |
| tree | 2615471e28512a2dddbd9e467102f31b6135f3f5 | |
| parent | 0acb2d63373576f3cdb5be529b2a66873659f221 [diff] [blame] |
Parse generic params on impl block
diff --git a/syntax/mod.rs b/syntax/mod.rs index 9a21087..1dcb55c 100644 --- a/syntax/mod.rs +++ b/syntax/mod.rs
@@ -136,6 +136,7 @@ pub struct Impl { pub impl_token: Token![impl], + pub generics: Lifetimes, pub negative: bool, pub ty: Type, pub brace_token: Brace,