aboutsummaryrefslogtreecommitdiff
path: root/src/generics.rs
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2020-03-20 13:02:10 -0700
committerChih-Hung Hsieh <chh@google.com>2020-03-20 13:02:10 -0700
commit218e269f27cf34c525b7acc48614d69fe0ad1f74 (patch)
treed48a2f46d81c821133901f5c01bafaf8231dfe90 /src/generics.rs
parent04bf40bbb86733c28bc3470599898d75f299312d (diff)
downloadsyn-218e269f27cf34c525b7acc48614d69fe0ad1f74.tar.gz
Update to latest syn-1.0.16
* fill back missing NOTICE,METADATA,*LICENSE* files Bug: 150877376 Test: make Test: atest --host -c --include-subdirs external/rust/crates Change-Id: Ib5df6b8fb97764214e701a888e44fab3a4245800
Diffstat (limited to 'src/generics.rs')
-rw-r--r--src/generics.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/generics.rs b/src/generics.rs
index d357cbbc..9feeab97 100644
--- a/src/generics.rs
+++ b/src/generics.rs
@@ -28,9 +28,6 @@ ast_enum_of_structs! {
/// This type is a [syntax tree enum].
///
/// [syntax tree enum]: enum.Expr.html#syntax-tree-enums
- //
- // TODO: change syntax-tree-enum link to an intra rustdoc link, currently
- // blocked on https://github.com/rust-lang/rust/issues/62833
pub enum GenericParam {
/// A generic type parameter: `T: Into<String>`.
Type(TypeParam),
@@ -448,9 +445,6 @@ ast_enum_of_structs! {
/// This type is a [syntax tree enum].
///
/// [syntax tree enum]: enum.Expr.html#syntax-tree-enums
- //
- // TODO: change syntax-tree-enum link to an intra rustdoc link, currently
- // blocked on https://github.com/rust-lang/rust/issues/62833
pub enum WherePredicate {
/// A type predicate in a `where` clause: `for<'c> Foo<'c>: Trait<'c>`.
Type(PredicateType),