Allow flow class field to be named constructor (#510)

This commit is contained in:
Brian Ng
2017-05-10 09:18:08 -05:00
committed by Daniel Tschinder
parent 0e12f565da
commit 9d1f819320
7 changed files with 409 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class A {
constructor(): Object {
return {};
}
}