File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ describe("Flow type syntax", function () {
148148 eol +
149149 "};" ,
150150 ) ;
151- check ( "var methodAnonymousParameter: { m(number): void };" )
151+ check ( "var methodAnonymousParameter: { m(number): void };" ) ;
152152
153153 check ( `declare var v: { get getter(): number };` ) ;
154154 check ( `declare var v: { set setter(number): void };` ) ;
@@ -159,7 +159,7 @@ describe("Flow type syntax", function () {
159159
160160 // Declare
161161 check ( "declare var A: string;" ) ;
162- check ( "declare var methodAnonymousParameter: { m(number): void };" )
162+ check ( "declare var methodAnonymousParameter: { m(number): void };" ) ;
163163
164164 check ( "declare function foo(c: C): void;" ) ;
165165 check ( "declare function foo(c: C, b: B): void;" ) ;
@@ -168,7 +168,7 @@ describe("Flow type syntax", function () {
168168 check ( "declare function f(): () => void;" ) ;
169169 check ( "declare function f(): (cb: () => void) => () => void;" ) ;
170170 check ( "declare function f(m: (cb: () => void) => () => void): void;" ) ;
171- check ( "declare function anonymousParameter(number): void;" )
171+ check ( "declare function anonymousParameter(number): void;" ) ;
172172 check ( "declare function f(): (() => void) => () => void;" ) ;
173173 check ( "declare function f((() => void) => () => void): void;" ) ;
174174 check ( "declare function f(): ('a' & mixed) => void;" ) ;
You can’t perform that action at this time.
0 commit comments