fix flow-comments - class type paramters and implements (#9897)

This commit is contained in:
Tan Li Hau
2019-04-27 04:23:13 +08:00
committed by Nicolò Ribaudo
parent 71013088ef
commit ca3c53ae0b
7 changed files with 36 additions and 7 deletions

View File

@@ -0,0 +1 @@
class Foo implements Bar, Baz {}

View File

@@ -0,0 +1,3 @@
class Foo
/*:: implements Bar, Baz*/
{}

View File

@@ -0,0 +1 @@
class Foo<S, T> implements Bar, Baz {}

View File

@@ -0,0 +1,3 @@
class Foo
/*:: <S, T> implements Bar, Baz*/
{}

View File

@@ -0,0 +1,3 @@
class Foo
/*:: <T>*/
{}