fix flow-comments - class type paramters and implements (#9897)
This commit is contained in:
committed by
Nicolò Ribaudo
parent
71013088ef
commit
ca3c53ae0b
@@ -0,0 +1 @@
|
||||
class Foo implements Bar, Baz {}
|
||||
@@ -0,0 +1,3 @@
|
||||
class Foo
|
||||
/*:: implements Bar, Baz*/
|
||||
{}
|
||||
@@ -0,0 +1 @@
|
||||
class Foo<S, T> implements Bar, Baz {}
|
||||
@@ -0,0 +1,3 @@
|
||||
class Foo
|
||||
/*:: <S, T> implements Bar, Baz*/
|
||||
{}
|
||||
@@ -0,0 +1 @@
|
||||
class Foo<T> {}
|
||||
@@ -0,0 +1,3 @@
|
||||
class Foo
|
||||
/*:: <T>*/
|
||||
{}
|
||||
Reference in New Issue
Block a user