Add newline for empty blocks {} (#205)

I find it weird to put `{}` together. So I figured I would change it to have an empty line and ask for feedback :)

![image](https://cloud.githubusercontent.com/assets/197597/21739279/062adc80-d44c-11e6-8bb7-5e0768f3ddde.png)

Beware: most of the test cases are not representative of real code, you almost never define blocks with no content in practice.
master
Christopher Chedeau 2017-01-16 08:31:32 -08:00 committed by James Long
parent c9af5a6c3b
commit 74bc9e7a4d
91 changed files with 893 additions and 474 deletions

View File

@ -492,11 +492,6 @@ function genericPrintNoParens(path, options, print) {
const hasContent = getFirstString(naked); const hasContent = getFirstString(naked);
const hasDirectives = n.directives && n.directives.length > 0; const hasDirectives = n.directives && n.directives.length > 0;
// If there are no contents, return a simple block
if (!hasContent && !hasDirectives) {
return "{}";
}
parts.push("{"); parts.push("{");
// Babel 6 // Babel 6

View File

@ -30,7 +30,8 @@ function foo() {
bar(x); bar(x);
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function bar(x: number) {} function bar(x: number) {
}
function foo() { function foo() {
var x = null; var x = null;
if (x == null) return; if (x == null) return;

View File

@ -172,7 +172,8 @@ exports[`test issue-530.js 1`] = `
module.exports = foo; module.exports = foo;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function foo(...args: any) {} function foo(...args: any) {
}
module.exports = foo; module.exports = foo;
" "

View File

@ -93,9 +93,11 @@ let tests = [
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @providesModule Arith */ /* @providesModule Arith */
function num(x: number) {} function num(x: number) {
}
function str(x: string) {} function str(x: string) {
}
function foo() { function foo() {
var x = 0; var x = 0;
@ -283,7 +285,8 @@ y *= 2; // error
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function num(x: number) {} function num(x: number) {
}
num(null * 1); num(null * 1);
num(1 * null); num(1 * null);

View File

@ -58,7 +58,8 @@ function from_test() {
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function foo(x: string) {} function foo(x: string) {
}
var a = [ 0 ]; var a = [ 0 ];
var b = a.map(function(x) { var b = a.map(function(x) {

View File

@ -41,7 +41,8 @@ module.exports = \"arrays\";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @providesModule Arrays */ /* @providesModule Arrays */
function foo(x: string) {} function foo(x: string) {
}
var a = []; var a = [];
a[0] = 1; a[0] = 1;

View File

@ -28,7 +28,8 @@ var ident = <T>(x: T): T => x;
exports[`test arrow_function_expression.js 1`] = ` exports[`test arrow_function_expression.js 1`] = `
"(a => {}).length "(a => {}).length
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(a => {}).length; (a => {
}).length;
" "
`; `;
@ -62,7 +63,8 @@ exports[`test long-call-no-args.js 1`] = `
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
veryLongCall( veryLongCall(
VERY_VERY_VERY_VERY_VERY_VERY_VERY_VERY_VERY_VERY_LONG_CONSTANT, VERY_VERY_VERY_VERY_VERY_VERY_VERY_VERY_VERY_VERY_LONG_CONSTANT,
() => {} () => {
}
); );
" "
`; `;

View File

@ -171,24 +171,42 @@ console.log(x.async);
var async = 3; var async = 3;
var y = { async }; var y = { async };
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
async function f() {} async function f() {
async function ft<T>(a: T) {} }
async function ft<T>(a: T) {
class C {
async m() {}
async mt<T>(a: T) {}
static async m(a) {}
static async mt<T>(a: T) {}
} }
var e = async function() {}; class C {
var et = async function<T>(a: T) {}; async m() {
}
async mt<T>(a: T) {
}
static async m(a) {
}
static async mt<T>(a: T) {
}
}
var n = new async function() {}(); var e = async function() {
};
var et = async function<T>(a: T) {
};
var o = { async m() {} }; var n = new async function() {
var ot = { async m<T>(a: T) {} }; }();
var oz = { async async() {} };
var o = {
async m() {
}
};
var ot = {
async m<T>(a: T) {
}
};
var oz = {
async async() {
}
};
var x = { async: 5 }; var x = { async: 5 };
console.log(x.async); console.log(x.async);
@ -236,7 +254,8 @@ async function foo2(): Promise<string> {
} }
async function foo3(): Promise<string> { async function foo3(): Promise<string> {
function bar() {} function bar() {
}
return bar(); return bar();
} }
" "

View File

@ -99,11 +99,14 @@ let tests = [
}, },
// in predicates // in predicates
function() { function() {
if (\"foo\" in 123) {} if (\"foo\" in 123) {
}
// error // error
if (!\"foo\" in {}) {} if (!\"foo\" in {}) {
}
// error, !\'foo\' is a boolean // error, !\'foo\' is a boolean
if (!(\"foo\" in {})) {} if (!(\"foo\" in {})) {
}
}, },
// annotations on RHS // annotations on RHS
function(x: Object, y: mixed) { function(x: Object, y: mixed) {

View File

@ -410,16 +410,20 @@ function var_var() {
// function x * // function x *
function function_toplevel() { function function_toplevel() {
function a() {} function a() {
}
function a() {} function a() {
}
} }
function function_block() { function function_block() {
{ {
function a() {} function a() {
}
function a() {} function a() {
}
} }
} }
@ -443,7 +447,8 @@ function type_shadow_nested_scope() {
} }
// fn params name clash // fn params name clash
function fn_params_name_clash(x, x /* error: x already bound */) {} function fn_params_name_clash(x, x /* error: x already bound */) {
}
function fn_params_clash_fn_binding(x, y) { function fn_params_clash_fn_binding(x, y) {
let x = 0; let x = 0;
// error: x already bound // error: x already bound
@ -631,32 +636,38 @@ function try_scope() {
function for_scope_let() { function for_scope_let() {
let a: number = 0; let a: number = 0;
for (let a = \"\" /* ok: local to init */; ; ) {} for (let a = \"\" /* ok: local to init */; ; ) {
}
} }
function for_scope_var() { function for_scope_var() {
var a: number = 0; var a: number = 0;
for (var a = \"\" /* error: string ~> number */; ; ) {} for (var a = \"\" /* error: string ~> number */; ; ) {
}
} }
function for_in_scope_let(o: Object) { function for_in_scope_let(o: Object) {
let a: number = 0; let a: number = 0;
for (let a /* ok: local to init */ in o) {} for (let a /* ok: local to init */ in o) {
}
} }
function for_in_scope_var(o: Object) { function for_in_scope_var(o: Object) {
var a: number = 0; var a: number = 0;
for (var a /* error: string ~> number */ in o) {} for (var a /* error: string ~> number */ in o) {
}
} }
function for_of_scope_let(xs: string[]) { function for_of_scope_let(xs: string[]) {
let a: number = 0; let a: number = 0;
for (let a /* ok: local to init */ of xs) {} for (let a /* ok: local to init */ of xs) {
}
} }
function for_of_scope_var(xs: string[]) { function for_of_scope_var(xs: string[]) {
var a: number = 0; var a: number = 0;
for (var a /* error: string ~> number */ of xs) {} for (var a /* error: string ~> number */ of xs) {
}
} }
function default_param_1() { function default_param_1() {

View File

@ -151,25 +151,34 @@ a.delete(\"xx\");
a.delete(3); a.delete(3);
// incorrect // incorrect
// keys // keys
for (let x: string of a.keys()) {} for (let x: string of a.keys()) {
}
// correct // correct
for (let x: number of a.keys()) {} for (let x: number of a.keys()) {
}
// incorrect // incorrect
// values // values
for (let x: string | File of a.values()) {} for (let x: string | File of a.values()) {
}
// correct // correct
for (let x: string | File | Blob of a.values()) {} for (let x: string | File | Blob of a.values()) {
}
// incorrect // incorrect
// entries // entries
for (let [ x, y ]: [string, string | File] of a.entries()) {} for (let [ x, y ]: [string, string | File] of a.entries()) {
}
// correct // correct
for (let [ x, y ]: [string, string | File | Blob] of a.entries()) {} for (let [ x, y ]: [string, string | File | Blob] of a.entries()) {
}
// incorrect // incorrect
for (let [ x, y ]: [number, string] of a.entries()) {} for (let [ x, y ]: [number, string] of a.entries()) {
}
// incorrect // incorrect
for (let [ x, y ]: [string, number] of a.entries()) {} for (let [ x, y ]: [string, number] of a.entries()) {
}
// incorrect // incorrect
for (let [ x, y ]: [number, number] of a.entries()) {} // incorrect for (let [ x, y ]: [number, number] of a.entries()) {
} // incorrect
" "
`; `;
@ -217,13 +226,15 @@ const o: MutationObserver = new MutationObserver(callback);
// correct // correct
new MutationObserver((arr: Array<MutationRecord>) => true); new MutationObserver((arr: Array<MutationRecord>) => true);
// correct // correct
new MutationObserver(() => {}); new MutationObserver(() => {
});
// correct // correct
new MutationObserver(); new MutationObserver();
// incorrect // incorrect
new MutationObserver(42); new MutationObserver(42);
// incorrect // incorrect
new MutationObserver((n: number) => {}); new MutationObserver((n: number) => {
});
// incorrect // incorrect
// observe // observe
const div = document.createElement(\"div\"); const div = document.createElement(\"div\");

View File

@ -4,7 +4,8 @@ foo(0, \"\");
function bar<X:number, Y:X>(x:X, y:Y): number { return y*0; } function bar<X:number, Y:X>(x:X, y:Y): number { return y*0; }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function foo<X, Y: X>(x: X, y: Y): void {} function foo<X, Y: X>(x: X, y: Y): void {
}
foo(0, \"\"); foo(0, \"\");
function bar<X: number, Y: X>(x: X, y: Y): number { function bar<X: number, Y: X>(x: X, y: Y): number {

View File

@ -63,7 +63,8 @@ class Foo<T> {
map<U>(callbackfn: () => U): Foo<U> { map<U>(callbackfn: () => U): Foo<U> {
return new Foo(); return new Foo();
} }
set(x: T): void {} set(x: T): void {
}
get(): T { get(): T {
return this.x; return this.x;
} }

View File

@ -106,13 +106,15 @@ var d: { (): string } = function(x: number): string {
}; };
// ...but subtyping rules still apply // ...but subtyping rules still apply
var e: { (x: any): void } = function() {}; var e: { (x: any): void } = function() {
};
// arity // arity
var f: { (): mixed } = function(): string { var f: { (): mixed } = function(): string {
return \"hi\"; return \"hi\";
}; };
// return type // return type
var g: { (x: string): void } = function(x: mixed) {}; var g: { (x: string): void } = function(x: mixed) {
};
// param type // param type
// A function can be an object // A function can be an object
var y: {} = function(x: number): string { var y: {} = function(x: number): string {
@ -261,13 +263,16 @@ f.myProp = 123;
var c : { myProp: number } = f; var c : { myProp: number } = f;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Expecting properties that don\'t exist should be an error // Expecting properties that don\'t exist should be an error
var a: { someProp: number } = function() {}; var a: { someProp: number } = function() {
};
// Expecting properties that do exist should be fine // Expecting properties that do exist should be fine
var b: { apply: Function } = function() {}; var b: { apply: Function } = function() {
};
// Expecting properties in the functions statics should be fine // Expecting properties in the functions statics should be fine
var f = function() {}; var f = function() {
};
f.myProp = 123; f.myProp = 123;
var c: { myProp: number } = f; var c: { myProp: number } = f;
" "
@ -310,7 +315,8 @@ var c: { (x: string): string } = x => x.toFixed();
var d: { (): string } = x => \"hi\"; var d: { (): string } = x => \"hi\";
// ...but subtyping rules still apply // ...but subtyping rules still apply
var e: { (x: any): void } = () => {}; var e: { (x: any): void } = () => {
};
// arity // arity
var f: { (): mixed } = () => \"hi\"; var f: { (): mixed } = () => \"hi\";
// return type // return type

View File

@ -44,7 +44,8 @@ callable(0); // error, number ~> string
callable.call(null, 0); // error, number ~> string callable.call(null, 0); // error, number ~> string
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var x = Boolean(4); var x = Boolean(4);
function foo(fn: (value: any) => boolean) {} function foo(fn: (value: any) => boolean) {
}
foo(Boolean); foo(Boolean);
var dict: { [k: string]: any } = {}; var dict: { [k: string]: any } = {};

View File

@ -64,15 +64,19 @@ module.exports = {
class A { class A {
static x: number; static x: number;
static y: string; static y: string;
static foo(x: number) {} static foo(x: number) {
static bar(y: string) {} }
static bar(y: string) {
}
} }
A.qux = function(x: string) {}; A.qux = function(x: string) {
};
// error? // error?
class B extends A { class B extends A {
static x: string; static x: string;
// error? // error?
static foo(x: string) {} static foo(x: string) {
}
// error? // error?
static main() { static main() {
B.x = 0; B.x = 0;
@ -98,7 +102,8 @@ class B extends A {
class C<X> { class C<X> {
static x: X; static x: X;
static bar(x: X) {} static bar(x: X) {
}
static create(): C<*> { static create(): C<*> {
return new this(); return new this();
} }

View File

@ -69,7 +69,8 @@ class C<X> {
x: X; x: X;
} }
function foo<X>(c: C<X>, x: X) {} function foo<X>(c: C<X>, x: X) {
}
type O = { f: number }; type O = { f: number };

View File

@ -17,7 +17,8 @@ function foo(x: Class<A>): A {
} }
class B { class B {
constructor(_: any) {} constructor(_: any) {
}
} }
function bar(x: Class<B>): B { function bar(x: Class<B>): B {
return new x(); // error (too few args) return new x(); // error (too few args)

View File

@ -6,7 +6,8 @@ exports[`test A.js 1`] = `
module.exports = A; module.exports = A;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class A { class A {
foo(x: number): void {} foo(x: number): void {
}
} }
module.exports = A; module.exports = A;
@ -49,7 +50,8 @@ module.exports = C;
var B = require(\"./B\"); var B = require(\"./B\");
class C extends B { class C extends B {
foo(x: string): void {} foo(x: string): void {
}
} }
let c = new C(); let c = new C();

View File

@ -85,13 +85,15 @@ function local_meth() {
* @flow * @flow
*/ */
function takes_string(_: string) {} function takes_string(_: string) {
}
// global write from function // global write from function
// //
var global_x = \"hello\"; var global_x = \"hello\";
function global_f() {} function global_f() {
}
function global_g() { function global_g() {
global_x = 42; global_x = 42;
} }
@ -109,7 +111,8 @@ global_x = 42;
function local_func() { function local_func() {
var local_x = \"hello\"; var local_x = \"hello\";
function local_f() {} function local_f() {
}
function local_g() { function local_g() {
local_x = 42; local_x = 42;
} }
@ -128,7 +131,8 @@ function local_func() {
var global_y = \"hello\"; var global_y = \"hello\";
var global_o = { var global_o = {
f: function() {}, f: function() {
},
g: function() { g: function() {
global_y = 42; global_y = 42;
} }
@ -148,7 +152,8 @@ function local_meth() {
var local_y = \"hello\"; var local_y = \"hello\";
var local_o = { var local_o = {
f: function() {}, f: function() {
},
g: function() { g: function() {
local_y = 42; local_y = 42;
} }
@ -253,7 +258,8 @@ call_me();
*/ */
// global, anybody can call it at any time // global, anybody can call it at any time
var call_me: () => void = () => {}; var call_me: () => void = () => {
};
function g(x: ?number) { function g(x: ?number) {
const const_x = x; const const_x = x;

View File

@ -4,7 +4,8 @@ function f(x:string) { }
module.exports = f; module.exports = f;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function f(x: string) {} function f(x: string) {
}
module.exports = f; module.exports = f;
" "

View File

@ -10,11 +10,13 @@ class D {
module.exports = C; module.exports = C;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class C { class C {
constructor() {} constructor() {
}
} }
class D { class D {
constructor(): number {} constructor(): number {
}
} }
module.exports = C; module.exports = C;

View File

@ -11,12 +11,14 @@ declare module bar {
// TODO // TODO
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
declare module foo {} declare module foo {
}
// TODO // TODO
// This file triggers a violation of the \"disjoint-or-nested ranges invariant\" // This file triggers a violation of the \"disjoint-or-nested ranges invariant\"
// that we implicitly assume in type-at-pos and coverage implementations. In // that we implicitly assume in type-at-pos and coverage implementations. In
// particular, when unchecked it causes a crash with coverage --color. // particular, when unchecked it causes a crash with coverage --color.
declare module bar {} declare module bar {
}
" "
`; `;
@ -28,7 +30,8 @@ declare module foo {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// check coverage of declare module // check coverage of declare module
declare module foo {} declare module foo {
}
" "
`; `;
@ -57,11 +60,13 @@ declare module bar {
declare class qux { declare class qux {
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
declare module foo {} declare module foo {
}
// This file triggers a violation of the \"disjoint-or-nested ranges invariant\" // This file triggers a violation of the \"disjoint-or-nested ranges invariant\"
// that we implicitly assume in type-at-pos and coverage implementations. In // that we implicitly assume in type-at-pos and coverage implementations. In
// particular, when unchecked it causes non-termination with coverage --color. // particular, when unchecked it causes non-termination with coverage --color.
declare module bar {} declare module bar {
}
// TODO // TODO
declare class qux {} declare class qux {}
" "

View File

@ -211,13 +211,17 @@ var {
}; };
(p: void); (p: void);
// error: string ~> void // error: string ~> void
function obj_prop_err({ x: { y } } = null) {} function obj_prop_err({ x: { y } } = null) {
}
// error: property \`x\` cannot be accessed on null // error: property \`x\` cannot be accessed on null
function obj_rest_err({ ...o } = 0) {} function obj_rest_err({ ...o } = 0) {
}
// error: expected object instead of number // error: expected object instead of number
function arr_elem_err([ x ] = null) {} function arr_elem_err([ x ] = null) {
}
// error: element 0 cannot be accessed on null // error: element 0 cannot be accessed on null
function arr_rest_err([ ...a ] = null) {} function arr_rest_err([ ...a ] = null) {
}
// error: expected array instead of null // error: expected array instead of null
function gen<T>(x: T, { p = x }: { p: T }): T { function gen<T>(x: T, { p = x }: { p: T }): T {
return p; return p;
@ -229,14 +233,19 @@ obj_prop_fun(({}: { p?: { q?: null } }));
obj_prop_var(({}: { p?: { q?: null } })); obj_prop_var(({}: { p?: { q?: null } }));
// ok // ok
// union-like upper bounds preserved through destructuring // union-like upper bounds preserved through destructuring
function obj_prop_opt({ p }: { p?: string } = { p: 0 }) {} function obj_prop_opt({ p }: { p?: string } = { p: 0 }) {
function obj_prop_maybe({ p }: { p: ?string } = { p: 0 }) {} }
function obj_prop_union({ p }: { p: number | string } = { p: true }) {} function obj_prop_maybe({ p }: { p: ?string } = { p: 0 }) {
}
function obj_prop_union({ p }: { p: number | string } = { p: true }) {
}
// TODO: union-of-objects upper bounds preserved through destructuring // TODO: union-of-objects upper bounds preserved through destructuring
function obj_prop_union2({ p }: { p: number } | { p: string } = { p: true }) {} function obj_prop_union2({ p }: { p: number } | { p: string } = { p: true }) {
}
function default_expr_scope({ a, b = a }) {} function default_expr_scope({ a, b = a }) {
}
" "
`; `;
@ -342,9 +351,11 @@ bar({ x: \"\", y: 0 });
var spread = { y: \"\" }; var spread = { y: \"\" };
var extend: { x: number, y: string, z: boolean } = { x: 0, ...spread }; var extend: { x: number, y: string, z: boolean } = { x: 0, ...spread };
function qux(_: { a: number }) {} function qux(_: { a: number }) {
}
qux({ a: \"\" }); qux({ a: \"\" });
function corge({ b }: { b: string }) {} function corge({ b }: { b: string }) {
}
corge({ b: 0 }); corge({ b: 0 });
var { n }: { n: number } = { n: \"\" }; var { n }: { n: number } = { n: \"\" };
@ -463,24 +474,32 @@ function arr_rest_pattern<X>([ _, ...a ] : ArrRest<X>) { // a: [X]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
function obj_pattern<X>({ prop }: { prop: X }) {} function obj_pattern<X>({ prop }: { prop: X }) {
}
// prop: X // prop: X
type Prop<X> = { prop: X }; type Prop<X> = { prop: X };
function obj_pattern2<X>({ prop }: Prop<X>) {} function obj_pattern2<X>({ prop }: Prop<X>) {
}
// prop: X // prop: X
function arr_pattern<X>([ elem ]: X[]) {} function arr_pattern<X>([ elem ]: X[]) {
}
// elem: X // elem: X
type Elem<X> = X[]; type Elem<X> = X[];
function arr_pattern2<X>([ elem ]: Elem<X>) {} function arr_pattern2<X>([ elem ]: Elem<X>) {
}
// elem: X // elem: X
function tup_pattern<X>([ proj ]: [X]) {} function tup_pattern<X>([ proj ]: [X]) {
}
// proj: X // proj: X
type Proj<X> = [X]; type Proj<X> = [X];
function tup_pattern2<X>([ proj ]: Proj<X>) {} function tup_pattern2<X>([ proj ]: Proj<X>) {
}
// proj: X // proj: X
function rest_antipattern<T>(...t: T) {} function rest_antipattern<T>(...t: T) {
}
// nonsense // nonsense
function rest_pattern<X>(...r: X[]) {} function rest_pattern<X>(...r: X[]) {
}
// r: X[] // r: X[]
function obj_rest_pattern<X>({ _, ...o }: { _: any, x: X }) { function obj_rest_pattern<X>({ _, ...o }: { _: any, x: X }) {
// o: { x: X } // o: { x: X }

View File

@ -300,7 +300,8 @@ let tests = [
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
let listener: EventListener = function(event: Event): void {}; let listener: EventListener = function(event: Event): void {
};
let tests = [ let tests = [
// attachEvent // attachEvent
@ -422,16 +423,26 @@ let tests = [
function() { function() {
document.registerElement(\"custom-element\", { document.registerElement(\"custom-element\", {
prototype: Object.create(HTMLElement.prototype, { prototype: Object.create(HTMLElement.prototype, {
createdCallback: { value: function createdCallback() {} }, createdCallback: {
attachedCallback: { value: function attachedCallback() {} }, value: function createdCallback() {
detachedCallback: { value: function detachedCallback() {} }, }
},
attachedCallback: {
value: function attachedCallback() {
}
},
detachedCallback: {
value: function detachedCallback() {
}
},
attributeChangedCallback: { attributeChangedCallback: {
value: function attributeChangedCallback( value: function attributeChangedCallback(
attributeLocalName, attributeLocalName,
oldAttributeValue, oldAttributeValue,
newAttributeValue, newAttributeValue,
attributeNamespace attributeNamespace
) {} ) {
}
} }
}) })
}); });
@ -440,15 +451,19 @@ let tests = [
function() { function() {
document.registerElement(\"custom-element\", { document.registerElement(\"custom-element\", {
prototype: Object.assign(Object.create(HTMLElement.prototype), { prototype: Object.assign(Object.create(HTMLElement.prototype), {
createdCallback() {}, createdCallback() {
attachedCallback() {}, },
detachedCallback() {}, attachedCallback() {
},
detachedCallback() {
},
attributeChangedCallback( attributeChangedCallback(
attributeLocalName, attributeLocalName,
oldAttributeValue, oldAttributeValue,
newAttributeValue, newAttributeValue,
attributeNamespace attributeNamespace
) {} ) {
}
}) })
}); });
}, },
@ -463,7 +478,8 @@ let tests = [
newVal: string, newVal: string,
// Error: This might be null // Error: This might be null
namespace: string namespace: string
) {} ) {
}
} }
}); });
} }

View File

@ -7,7 +7,8 @@ module.exports = num;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
var num = 42; var num = 42;
function bar() {} function bar() {
}
bar(); bar();
module.exports = num; module.exports = num;
" "
@ -38,7 +39,8 @@ const idxResult = idx(obj, obj => obj.a.b.c.d);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
var num = require(\"./import\"); var num = require(\"./import\");
function foo(x) {} function foo(x) {
}
foo(0); foo(0);
var a: string = num; var a: string = num;

View File

@ -36,8 +36,10 @@ class C5 {
new C5().m = new C5().m - 42; new C5().m = new C5().m - 42;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class C1 { class C1 {
m() {} m() {
m() {} }
m() {
}
} }
new C1().m(); new C1().m();
@ -46,14 +48,17 @@ class C2 {
get m() { get m() {
return 42; return 42;
} }
m() {} m() {
}
} }
new C2().m(); new C2().m();
class C3 { class C3 {
set m(x) {} set m(x) {
m() {} }
m() {
}
} }
new C3().m(); new C3().m();
@ -62,17 +67,20 @@ class C4 {
get m() { get m() {
return 42; return 42;
} }
set m(x: number) {} set m(x: number) {
}
} }
new C4().m = new C4().m - 42; new C4().m = new C4().m - 42;
class C5 { class C5 {
m() {} m() {
}
get m() { get m() {
return 42; return 42;
} }
set m(x: number) {} set m(x: number) {
}
} }
new C5().m = new C5().m - 42; new C5().m = new C5().m - 42;

View File

@ -1,6 +1,7 @@
exports[`test errors.js 1`] = ` exports[`test errors.js 1`] = `
"if (typeof define === \'function\' && define.amd) { } "if (typeof define === \'function\' && define.amd) { }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
if (typeof define === \"function\" && define.amd) {} if (typeof define === \"function\" && define.amd) {
}
" "
`; `;

View File

@ -79,7 +79,8 @@ let tests = [
}, },
// passed as a function // passed as a function
function(copyProperties: Object$Assign) { function(copyProperties: Object$Assign) {
function x(cb: Function) {} function x(cb: Function) {
}
x(copyProperties); x(copyProperties);
} }
]; ];
@ -205,7 +206,8 @@ let tests = [
}, },
// passed as a function // passed as a function
function(mergeInto: $Facebookism$MergeInto) { function(mergeInto: $Facebookism$MergeInto) {
function x(cb: Function) {} function x(cb: Function) {
}
x(mergeInto); x(mergeInto);
} }
]; ];

View File

@ -117,7 +117,8 @@ for (let v of e.entries()) {
const [ i, j ]: [string, string] = v; // correct const [ i, j ]: [string, string] = v; // correct
} }
e.getAll(\"content-type\").forEach((v: string) => {}); // correct e.getAll(\"content-type\").forEach((v: string) => {
}); // correct
" "
`; `;
@ -390,6 +391,7 @@ for (let v of e.entries()) {
const [ i, j ]: [string, string] = v; // correct const [ i, j ]: [string, string] = v; // correct
} }
e.getAll(\"key1\").forEach((v: string) => {}); // correct e.getAll(\"key1\").forEach((v: string) => {
}); // correct
" "
`; `;

View File

@ -285,7 +285,9 @@ exports[`test for.js 1`] = `
"for (;;) {} "for (;;) {}
for (var i = 0; i < 10; ++i) {} for (var i = 0; i < 10; ++i) {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
for (;;) {} for (;;) {
for (var i = 0; i < 10; ++i) {} }
for (var i = 0; i < 10; ++i) {
}
" "
`; `;

View File

@ -308,7 +308,8 @@ function bad(x: Function, y: Object): void {
let tests = [ let tests = [
function(y: () => void, z: Function) { function(y: () => void, z: Function) {
function x() {} function x() {
}
(x.length: void); (x.length: void);
// error, it\'s a number // error, it\'s a number
(y.length: void); (y.length: void);
@ -322,7 +323,8 @@ let tests = [
(z.name: void); // error, it\'s a string (z.name: void); // error, it\'s a string
}, },
function(y: () => void, z: Function) { function(y: () => void, z: Function) {
function x() {} function x() {
}
x.length = \"foo\"; x.length = \"foo\";
// error, it\'s a number // error, it\'s a number
y.length = \"foo\"; y.length = \"foo\";

View File

@ -164,9 +164,9 @@ class GeneratorExamples {
*widen_next() { *widen_next() {
var x = yield 0; var x = yield 0;
if (typeof x === \"number\") {} if (typeof x === \"number\") {
else if (typeof x === \"boolean\") {} } else if (typeof x === \"boolean\") {
else { } else {
(x: string); // ok, sherlock (x: string); // ok, sherlock
} }
} }
@ -234,9 +234,9 @@ for (var x of examples.infer_stmt()) {
// error: number ~> string // error: number ~> string
var infer_stmt_next = examples.infer_stmt().next(0).value; var infer_stmt_next = examples.infer_stmt().next(0).value;
// error: number ~> boolean // error: number ~> boolean
if (typeof infer_stmt_next === \"undefined\") {} if (typeof infer_stmt_next === \"undefined\") {
else if (typeof infer_stmt_next === \"number\") {} } else if (typeof infer_stmt_next === \"number\") {
else { } else {
(infer_stmt_next: boolean); // error: string ~> boolean (infer_stmt_next: boolean); // error: string ~> boolean
} }
@ -245,9 +245,9 @@ examples.widen_next().next(\"\");
examples.widen_next().next(true); examples.widen_next().next(true);
for (var x of examples.widen_yield()) { for (var x of examples.widen_yield()) {
if (typeof x === \"number\") {} if (typeof x === \"number\") {
else if (typeof x === \"boolean\") {} } else if (typeof x === \"boolean\") {
else { } else {
(x: string); // ok, sherlock (x: string); // ok, sherlock
} }
} }
@ -306,9 +306,9 @@ for (var x of examples.infer_stmt()) {
// error: number ~> string // error: number ~> string
var infer_stmt_next = examples.infer_stmt().next(0).value; var infer_stmt_next = examples.infer_stmt().next(0).value;
// error: number ~> boolean // error: number ~> boolean
if (typeof infer_stmt_next === \"undefined\") {} if (typeof infer_stmt_next === \"undefined\") {
else if (typeof infer_stmt_next === \"number\") {} } else if (typeof infer_stmt_next === \"number\") {
else { } else {
(infer_stmt_next: boolean); // error: string ~> boolean (infer_stmt_next: boolean); // error: string ~> boolean
} }
" "
@ -481,17 +481,17 @@ for (var x of infer_stmt()) {
// error: number ~> string // error: number ~> string
var infer_stmt_next = infer_stmt().next(0).value; var infer_stmt_next = infer_stmt().next(0).value;
// error: number ~> boolean // error: number ~> boolean
if (typeof infer_stmt_next === \"undefined\") {} if (typeof infer_stmt_next === \"undefined\") {
else if (typeof infer_stmt_next === \"number\") {} } else if (typeof infer_stmt_next === \"number\") {
else { } else {
(infer_stmt_next: boolean); // error: string ~> boolean (infer_stmt_next: boolean); // error: string ~> boolean
} }
function* widen_next() { function* widen_next() {
var x = yield 0; var x = yield 0;
if (typeof x === \"number\") {} if (typeof x === \"number\") {
else if (typeof x === \"boolean\") {} } else if (typeof x === \"boolean\") {
else { } else {
(x: string); // ok, sherlock (x: string); // ok, sherlock
} }
} }
@ -505,9 +505,9 @@ function* widen_yield() {
yield true; yield true;
} }
for (var x of widen_yield()) { for (var x of widen_yield()) {
if (typeof x === \"number\") {} if (typeof x === \"number\") {
else if (typeof x === \"boolean\") {} } else if (typeof x === \"boolean\") {
else { } else {
(x: string); // ok, sherlock (x: string); // ok, sherlock
} }
} }

View File

@ -78,7 +78,8 @@ class D extends C {
// @flow // @flow
class C { class C {
override() {} override() {
}
} }
class D extends C { class D extends C {
@ -88,7 +89,8 @@ class D extends C {
bar() { bar() {
this.override; this.override;
} }
override() {} override() {
}
} }
" "
`; `;

View File

@ -79,16 +79,19 @@ class Foo {
get propWithMatchingGetterAndSetter(): number { get propWithMatchingGetterAndSetter(): number {
return 4; return 4;
} }
set propWithMatchingGetterAndSetter(x: number) {} set propWithMatchingGetterAndSetter(x: number) {
}
// The getter and setter need not have the same type - no error // The getter and setter need not have the same type - no error
get propWithSubtypingGetterAndSetter(): ?number { get propWithSubtypingGetterAndSetter(): ?number {
return 4; return 4;
} }
set propWithSubtypingGetterAndSetter(x: number) {} set propWithSubtypingGetterAndSetter(x: number) {
}
// The getter and setter need not have the same type - no error // The getter and setter need not have the same type - no error
set propWithSubtypingGetterAndSetterReordered(x: number) {} set propWithSubtypingGetterAndSetterReordered(x: number) {
}
get propWithSubtypingGetterAndSetterReordered(): ?number { get propWithSubtypingGetterAndSetterReordered(): ?number {
return 4; return 4;
} }
@ -96,7 +99,8 @@ class Foo {
get propWithMismatchingGetterAndSetter(): number { get propWithMismatchingGetterAndSetter(): number {
return 4; return 4;
} }
set propWithMismatchingGetterAndSetter(x: string) {} set propWithMismatchingGetterAndSetter(x: string) {
}
// doesn\'t match getter (OK) // doesn\'t match getter (OK)
propOverriddenWithGetter: number; propOverriddenWithGetter: number;
get propOverriddenWithGetter() { get propOverriddenWithGetter() {
@ -104,7 +108,8 @@ class Foo {
} }
propOverriddenWithSetter: number; propOverriddenWithSetter: number;
set propOverriddenWithSetter(x: string) {} set propOverriddenWithSetter(x: string) {
}
} }
var foo = new Foo(); var foo = new Foo();
@ -222,14 +227,17 @@ var obj = {
get propWithMatchingGetterAndSetter(): number { get propWithMatchingGetterAndSetter(): number {
return 4; return 4;
}, },
set propWithMatchingGetterAndSetter(x: number) {}, set propWithMatchingGetterAndSetter(x: number) {
},
// The getter and setter need not have the same type // The getter and setter need not have the same type
get propWithSubtypingGetterAndSetter(): ?number { get propWithSubtypingGetterAndSetter(): ?number {
return 4; return 4;
}, },
// OK // OK
set propWithSubtypingGetterAndSetter(x: number) {}, set propWithSubtypingGetterAndSetter(x: number) {
set propWithSubtypingGetterAndSetterReordered(x: number) {}, },
set propWithSubtypingGetterAndSetterReordered(x: number) {
},
// OK // OK
get propWithSubtypingGetterAndSetterReordered(): ?number { get propWithSubtypingGetterAndSetterReordered(): ?number {
return 4; return 4;
@ -237,8 +245,10 @@ var obj = {
get exampleOfOrderOfGetterAndSetter(): A { get exampleOfOrderOfGetterAndSetter(): A {
return new A(); return new A();
}, },
set exampleOfOrderOfGetterAndSetter(x: B) {}, set exampleOfOrderOfGetterAndSetter(x: B) {
set exampleOfOrderOfGetterAndSetterReordered(x: B) {}, },
set exampleOfOrderOfGetterAndSetterReordered(x: B) {
},
get exampleOfOrderOfGetterAndSetterReordered(): A { get exampleOfOrderOfGetterAndSetterReordered(): A {
return new A(); return new A();
} }
@ -415,7 +425,8 @@ class Base {
(class extends Base { (class extends Base {
// error: setter incompatible with read/write property // error: setter incompatible with read/write property
set x(value: B): void {} set x(value: B): void {
}
}); });
(class extends Base { (class extends Base {
@ -423,12 +434,14 @@ class Base {
get x(): C { get x(): C {
return c; return c;
} }
set x(value: A): void {} set x(value: A): void {
}
}); });
(class extends Base { (class extends Base {
// error: setter incompatible with read-only property // error: setter incompatible with read-only property
set pos(value: B): void {} set pos(value: B): void {
}
}); });
(class extends Base { (class extends Base {
@ -447,7 +460,8 @@ class Base {
(class extends Base { (class extends Base {
// ok: setter contravariant with write-only property // ok: setter contravariant with write-only property
set neg(value: A): void {} set neg(value: A): void {
}
}); });
(class extends Base { (class extends Base {

View File

@ -53,42 +53,48 @@ function _for_of(arr: Array<number>) {
function _if(b: () => boolean) { function _if(b: () => boolean) {
if (b()) { if (b()) {
var f = function() {}; var f = function() {
};
} }
f(); // error, possibly undefined f(); // error, possibly undefined
} }
function _while(b: () => boolean) { function _while(b: () => boolean) {
while (b()) { while (b()) {
var f = function() {}; var f = function() {
};
} }
f(); // error, possibly undefined f(); // error, possibly undefined
} }
function _do_while(b: () => boolean) { function _do_while(b: () => boolean) {
do { do {
var f = function() {}; var f = function() {
};
} while (b()); } while (b());
f(); // ok f(); // ok
} }
function _for(n: number) { function _for(n: number) {
for (var i = 0; i < n; i++) { for (var i = 0; i < n; i++) {
var f = function() {}; var f = function() {
};
} }
f(); // error, possibly undefined f(); // error, possibly undefined
} }
function _for_in(obj: Object) { function _for_in(obj: Object) {
for (var p in obj) { for (var p in obj) {
var f = function() {}; var f = function() {
};
} }
f(); // error, possibly undefined f(); // error, possibly undefined
} }
function _for_of(arr: Array<number>) { function _for_of(arr: Array<number>) {
for (var x of arr) { for (var x of arr) {
var f = function() {}; var f = function() {
};
} }
f(); // error, possibly undefined f(); // error, possibly undefined
} }

View File

@ -186,10 +186,12 @@ declare class C {
new C().bar((x: string) => { }); // error, number ~/~> string new C().bar((x: string) => { }); // error, number ~/~> string
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
interface I { foo(x: number): void } interface I { foo(x: number): void }
(function foo(x: number) {}: I); (function foo(x: number) {
}: I);
// error, property \`foo\` not found function // error, property \`foo\` not found function
declare class C { bar(i: I): void, bar(f: (x: number) => void): void } declare class C { bar(i: I): void, bar(f: (x: number) => void): void }
new C().bar((x: string) => {}); // error, number ~/~> string new C().bar((x: string) => {
}); // error, number ~/~> string
" "
`; `;

View File

@ -38,7 +38,8 @@ for (var y in this) {
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var a = [ true, false ]; var a = [ true, false ];
function foo(x) {} function foo(x) {
}
for (var i = 0; i < 3; i++) { for (var i = 0; i < 3; i++) {
foo(a[i]); foo(a[i]);
@ -70,6 +71,7 @@ for (var x in null) {
foo(x); // unreachable foo(x); // unreachable
} }
for (var y in this) {} for (var y in this) {
}
" "
`; `;

View File

@ -20,6 +20,7 @@ var a = new Map();
a.delete(\"foobar\"); a.delete(\"foobar\");
var b = undefined; var b = undefined;
if (undefined) {} if (undefined) {
}
" "
`; `;

View File

@ -37,11 +37,13 @@ var red:string = tuple[indices.red]; // error: tuple[0] is a number
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var APIKeys = require(\"./enum\"); var APIKeys = require(\"./enum\");
// object that maps \"AGE\" to \"age\", \"NAME\" to \"name\" // object that maps \"AGE\" to \"age\", \"NAME\" to \"name\"
function foo(x: $Keys<typeof APIKeys>) {} function foo(x: $Keys<typeof APIKeys>) {
}
foo(\"AGE\"); foo(\"AGE\");
foo(\"LOCATION\"); foo(\"LOCATION\");
// error // error
function bar(x: $Keys<{ age: number }>) {} function bar(x: $Keys<{ age: number }>) {
}
bar(APIKeys.AGE); bar(APIKeys.AGE);
// not an error: APIKeys.AGE = \"age\" // not an error: APIKeys.AGE = \"age\"
bar(APIKeys.NAME); bar(APIKeys.NAME);

View File

@ -159,7 +159,8 @@ var x: string = 0;
var x: number = 1; var x: number = 1;
//declare var T: $Type<number | Array<T>>; //declare var T: $Type<number | Array<T>>;
function foo(p: boolean) {} function foo(p: boolean) {
}
function sorry(really: boolean) { function sorry(really: boolean) {
if (really) { if (really) {

View File

@ -36,9 +36,12 @@ function f(x) {
f(foo); f(foo);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class C { class C {
C() {} C() {
foo() {} }
static bar() {} foo() {
}
static bar() {
}
qux() { qux() {
this.constructor.x; this.constructor.x;
} }

View File

@ -21,7 +21,8 @@ module.exports = {};
var A = { x: true, ...{} }; var A = { x: true, ...{} };
module.exports.cls = A; module.exports.cls = A;
function f(x: boolean) {} function f(x: boolean) {
}
module.exports.fn = f; module.exports.fn = f;
A.y = \"?\"; A.y = \"?\";
@ -146,7 +147,8 @@ module.exports = {obj: o};
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @providesModule E */ /* @providesModule E */
function h(x: number) {} function h(x: number) {
}
var proto = { fn: h }; var proto = { fn: h };
var o = Object.create(proto); var o = Object.create(proto);

View File

@ -41,7 +41,8 @@ module.exports = f;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function g(x: string) {} function g(x: string) {
}
//function f(x) { g(x); return x; } //function f(x) { g(x); return x; }
//function f(x:number) { g(x); return x; } //function f(x:number) { g(x); return x; }

View File

@ -42,7 +42,8 @@ var o2: Foo = new Foo();
function Foo() { function Foo() {
this.x = 0; this.x = 0;
} }
Foo.prototype.m = function() {}; Foo.prototype.m = function() {
};
var o1: { x: number, m(): void } = new Foo(); var o1: { x: number, m(): void } = new Foo();
@ -57,7 +58,8 @@ class D extends C { }
var d: { +m: () => void } = new D(); var d: { +m: () => void } = new D();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class C { class C {
m() {} m() {
}
} }
class D extends C {} class D extends C {}

View File

@ -121,7 +121,8 @@ class Qux {
return this.w; return this.w;
} }
fooqux(x: number) {} fooqux(x: number) {
}
} }
module.exports = Qux; module.exports = Qux;

View File

@ -59,7 +59,8 @@ module.exports = true;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @providesModule Condition */ /* @providesModule Condition */
function f(x: number) {} function f(x: number) {
}
function g() { function g() {
return 42 || \"hello\"; return 42 || \"hello\";
} }
@ -85,7 +86,8 @@ function bar() {
} }
class C { class C {
qux() {} qux() {
}
} }
function foo() { function foo() {
@ -100,7 +102,8 @@ function goofy() {
var x = g(); var x = g();
if (typeof x == \"function\") { if (typeof x == \"function\") {
x(); x();
} else {} } else {
}
} }
function goofy2() { function goofy2() {
@ -111,7 +114,8 @@ function goofy2() {
var y = o.x; var y = o.x;
if (typeof y == \"function\") { if (typeof y == \"function\") {
y(); y();
} else {} } else {
}
} }
module.exports = true; module.exports = true;
@ -134,7 +138,8 @@ module.exports = FlowSA;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @providesModule FlowSA */ /* @providesModule FlowSA */
function check(x: string) {} function check(x: string) {
}
function FlowSA() { function FlowSA() {
var x = 0; var x = 0;
@ -191,15 +196,18 @@ module.exports = \"sigma\";
/* @providesModule Sigma */ /* @providesModule Sigma */
class A { class A {
a() {} a() {
}
} }
class B extends A { class B extends A {
b() {} b() {
}
} }
class C extends B { class C extends B {
c() {} c() {
}
} }
function bar(x: B) { function bar(x: B) {
@ -224,11 +232,13 @@ function foo(x: A) {
} }
class D { class D {
d() {} d() {
}
} }
function baz(x: D) { function baz(x: D) {
if (x instanceof A) {} if (x instanceof A) {
}
} }
module.exports = \"sigma\"; module.exports = \"sigma\";

View File

@ -31,7 +31,8 @@ module.exports = { foo: (\"\": number) };
/*@flow*/ /*@flow*/
// import type { T } from \'...\' // import type { T } from \'...\'
type T = (x: number) => void; type T = (x: number) => void;
var f: T = function(x: string): void {}; var f: T = function(x: string): void {
};
type Map<X, Y> = (x: X) => Y; type Map<X, Y> = (x: X) => Y;

View File

@ -44,14 +44,18 @@ var data = \"foo\";
ls.stdin.write(data); ls.stdin.write(data);
ls.stdin.write(data, \"utf-8\"); ls.stdin.write(data, \"utf-8\");
ls.stdin.write(data, () => {}); ls.stdin.write(data, () => {
ls.stdin.write(data, \"utf-8\", () => {}); });
ls.stdin.write(data, \"utf-8\", () => {
});
ls.stdin.end(); ls.stdin.end();
ls.stdin.end(data); ls.stdin.end(data);
ls.stdin.end(data, \"utf-8\"); ls.stdin.end(data, \"utf-8\");
ls.stdin.end(data, () => {}); ls.stdin.end(data, () => {
ls.stdin.end(data, \"utf-8\", () => {}); });
ls.stdin.end(data, \"utf-8\", () => {
});
var ws = fs.createWriteStream(\"/dev/null\"); var ws = fs.createWriteStream(\"/dev/null\");
ls.stdout.pipe(ws).end(); ls.stdout.pipe(ws).end();

View File

@ -42,9 +42,11 @@ function bar(): ?string {
return null; return null;
} }
function qux(x: string) {} function qux(x: string) {
}
function corge(x: number) {} function corge(x: number) {
}
var x = bar(); var x = bar();
// x: ?string // x: ?string
@ -73,12 +75,15 @@ bar(\'hmm\');
function fn(data: ?{}) {} function fn(data: ?{}) {}
fn({some: \'literal\'}); fn({some: \'literal\'});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function foo(x: ?string) {} function foo(x: ?string) {
function bar(x: ?number) {} }
function bar(x: ?number) {
}
foo(\"hmm\"); foo(\"hmm\");
bar(\"hmm\"); bar(\"hmm\");
function fn(data: ?{}) {} function fn(data: ?{}) {
}
fn({ some: \"literal\" }); fn({ some: \"literal\" });
" "
`; `;

View File

@ -4,7 +4,10 @@ exports[`test a.js 1`] = `
module.exports = { a() {} };~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ module.exports = { a() {} };~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
module.exports = { a() {} }; module.exports = {
a() {
}
};
" "
`; `;
@ -19,7 +22,14 @@ module.exports = b;
/* @flow */ /* @flow */
var a = require(\"./a\"); var a = require(\"./a\");
var b = Object.assign({ bar() {}, ...{} }, a); var b = Object.assign(
{
bar() {
},
...{}
},
a
);
b.a(); b.a();
// works here // works here
module.exports = b; module.exports = b;
@ -194,14 +204,16 @@ var any: Object = {};
// error, Array<string> // error, Array<string>
class Foo { class Foo {
prop: string; prop: string;
foo() {} foo() {
}
} }
// constructor and foo not enumerable // constructor and foo not enumerable
(Object.keys(new Foo()): Array<\"error\">); (Object.keys(new Foo()): Array<\"error\">);
// error: prop ~> error // error: prop ~> error
class Bar extends Foo { class Bar extends Foo {
bar_prop: string; bar_prop: string;
bar() {} bar() {
}
} }
// only own enumerable props // only own enumerable props
(Object.keys(new Bar()): Array<\"error\">); // error: bar_prop ~> error (Object.keys(new Bar()): Array<\"error\">); // error: bar_prop ~> error
@ -395,10 +407,14 @@ var k : Object = a.constructor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function takesABool(x: boolean) {} function takesABool(x: boolean) {
function takesAString(x: string) {} }
function takesANumber(x: number) {} function takesAString(x: string) {
function takesAnObject(x: Object) {} }
function takesANumber(x: number) {
}
function takesAnObject(x: Object) {
}
class Foo {} class Foo {}
@ -452,7 +468,8 @@ takesAString(y.toString());
// ... on a primitive // ... on a primitive
(123).toString(); (123).toString();
(123).toString; (123).toString;
(123).toString = function() {}; (123).toString = function() {
};
// error // error
(123).toString(2); (123).toString(2);
(123).toString(\"foo\"); (123).toString(\"foo\");

View File

@ -37,7 +37,8 @@ bliffl.corge;
// error // error
bliffl.constructor = baz; bliffl.constructor = baz;
// error // error
bliffl.toString = function() {}; bliffl.toString = function() {
};
// error // error
baz.baz = 0; baz.baz = 0;

View File

@ -27,10 +27,12 @@ class C {
x<T>(x: T = 0) {} x<T>(x: T = 0) {}
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function x<T>(x: T = 0) {} function x<T>(x: T = 0) {
}
class C { class C {
x<T>(x: T = 0) {} x<T>(x: T = 0) {
}
} }
" "
`; `;
@ -264,7 +266,8 @@ function testOptionalNullableProperty(obj: { x?: ?string }): string {
} }
function testOptionalNullableFlowingToNullable(x?: ?string): ?string { function testOptionalNullableFlowingToNullable(x?: ?string): ?string {
var f = function(y: ?string) {}; var f = function(y: ?string) {
};
f(x); f(x);
} }
" "
@ -294,7 +297,8 @@ function bar(x = \"bar\"): string {
} }
bar(undefined); // ok bar(undefined); // ok
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function foo(x?: number) {} function foo(x?: number) {
}
foo(undefined); foo(undefined);
// ok // ok
function bar(x = \"bar\"): string { function bar(x = \"bar\"): string {

View File

@ -22,7 +22,8 @@ y = o;
// OK; we know that narrowing could not have happened // OK; we know that narrowing could not have happened
o.foo = 0; o.foo = 0;
// future widening is constrained // future widening is constrained
function bar(config: { foo?: number }) {} function bar(config: { foo?: number }) {
}
bar({}); bar({});
bar({ foo: \"\" }); bar({ foo: \"\" });
" "

View File

@ -72,13 +72,15 @@ class D {
m: Function; m: Function;
n() { n() {
if (this.m({})) {} if (this.m({})) {
}
} }
} }
declare var m: Function; declare var m: Function;
const x = \"\"; const x = \"\";
if (m.bind(this)(x)) {} if (m.bind(this)(x)) {
}
" "
`; `;
@ -254,7 +256,8 @@ function f(_this: { m: ?Meeting }): string {
return \"0\"; return \"0\";
} }
if (_this.m.es.some(a => a.fbid === 0)) {} if (_this.m.es.some(a => a.fbid === 0)) {
}
return \"3\"; return \"3\";
} }
" "

View File

@ -24,7 +24,8 @@ function f6(x: mixed): %checks (x !== null) { }
// Error: no return statement // Error: no return statement
function f6(x: mixed): %checks(x !== null) {} function f6(x: mixed): %checks(x !== null) {
}
" "
`; `;

View File

@ -586,7 +586,8 @@ Promise
// TODO: resolvedPromise<T> -> catch() -> then():T // TODO: resolvedPromise<T> -> catch() -> then():T
Promise Promise
.resolve(0) .resolve(0)
.catch(function(err) {}) .catch(function(err) {
})
.then(function(num) { .then(function(num) {
var a: number = num; var a: number = num;

View File

@ -197,8 +197,18 @@ var Example = React.createClass({
propTypes: { func: React.PropTypes.func.isRequired } propTypes: { func: React.PropTypes.func.isRequired }
}); });
var ok_void = <Example func={() => {}} />; var ok_void = (
var ok_args = <Example func={x => {}} />; <Example
func={() => {
}}
/>
);
var ok_args = (
<Example
func={x => {
}}
/>
);
var ok_retval = <Example func={() => 1} />; var ok_retval = <Example func={() => 1} />;
var fail_mistyped = <Example func={2} />; var fail_mistyped = <Example func={2} />;

View File

@ -15,7 +15,8 @@ var Z = 0;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
import React from \"react\"; import React from \"react\";
function F(props: { foo: string }) {} function F(props: { foo: string }) {
}
<F />; <F />;
/* error: missing \`foo\`*/ /* error: missing \`foo\`*/
<F foo={0} />; <F foo={0} />;
@ -23,7 +24,8 @@ function F(props: { foo: string }) {}
<F foo=\"\" />; <F foo=\"\" />;
// ok // ok
// props subtyping is property-wise covariant // props subtyping is property-wise covariant
function G(props: { foo: string | numner }) {} function G(props: { foo: string | numner }) {
}
<G foo=\"\" />; <G foo=\"\" />;
// ok // ok
var Z = 0; var Z = 0;

View File

@ -130,7 +130,8 @@ export function foo(props: { x: number }) { }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
export function foo(props: { x: number }) {} export function foo(props: { x: number }) {
}
" "
`; `;

View File

@ -5,6 +5,7 @@ export function foo(props: { y: number }) { }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
export function foo(props: { y: number }) {} export function foo(props: { y: number }) {
}
" "
`; `;

View File

@ -79,8 +79,8 @@ var tests = [
} }
}, },
function() { function() {
if (x == null) {} if (x == null) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
@ -89,8 +89,8 @@ var tests = [
var y: string = x; // ok var y: string = x; // ok
}, },
function() { function() {
if (!(x != null)) {} if (!(x != null)) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
@ -104,12 +104,13 @@ var tests = [
}, },
*/ */
function() { function() {
if (x != null) {} if (x != null) {
}
var y: string = x; // not ok var y: string = x; // not ok
}, },
function() { function() {
if (x != null) {} if (x != null) {
else { } else {
var y: string = x; // not ok var y: string = x; // not ok
} }
}, },
@ -375,8 +376,8 @@ var tests = [
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p == null) {} if (x.p == null) {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
@ -387,8 +388,8 @@ var tests = [
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (!(x.p != null)) {} if (!(x.p != null)) {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
@ -408,13 +409,14 @@ var tests = [
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p != null) {} if (x.p != null) {
}
var y: string = x.p; // not ok var y: string = x.p; // not ok
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p != null) {} if (x.p != null) {
else { } else {
var y: string = x.p; // not ok var y: string = x.p; // not ok
} }
}, },
@ -443,8 +445,8 @@ var tests = [
}, },
function() { function() {
var x: { y: ?string } = { y: null }; var x: { y: ?string } = { y: null };
if (x.y) {} if (x.y) {
else { } else {
x.y = \"foo\"; x.y = \"foo\";
} }
(x.y: string); (x.y: string);
@ -526,11 +528,13 @@ var tests = [
(x.y: string); (x.y: string);
}, },
function(x: string) { function(x: string) {
if (x === \"a\") {} if (x === \"a\") {
}
(x: \"b\"); // error (but only once, string !~> \'b\'; \'a\' is irrelevant) (x: \"b\"); // error (but only once, string !~> \'b\'; \'a\' is irrelevant)
}, },
function(x: mixed) { function(x: mixed) {
if (typeof x.bar === \"string\") {} if (typeof x.bar === \"string\") {
}
// error, so \`x.bar\` refinement is empty // error, so \`x.bar\` refinement is empty
(x: string & number); (x: string & number);
}, },
@ -543,7 +547,8 @@ var tests = [
function() { function() {
let x: { foo: ?string } = { foo: null }; let x: { foo: ?string } = { foo: null };
if (!x.foo) { if (!x.foo) {
if (false) {} if (false) {
}
x.foo = \"foo\"; x.foo = \"foo\";
} }
(x.foo: string); (x.foo: string);
@ -551,7 +556,8 @@ var tests = [
function() { function() {
let x: { foo: ?string } = { foo: null }; let x: { foo: ?string } = { foo: null };
if (!x.foo) { if (!x.foo) {
while (false) {} while (false) {
}
x.foo = \"foo\"; x.foo = \"foo\";
} }
(x.foo: string); (x.foo: string);
@ -559,7 +565,8 @@ var tests = [
function() { function() {
let x: { foo: ?string } = { foo: null }; let x: { foo: ?string } = { foo: null };
if (!x.foo) { if (!x.foo) {
for (var i = 0; i < 0; i++) {} for (var i = 0; i < 0; i++) {
}
x.foo = \"foo\"; x.foo = \"foo\";
} }
(x.foo: string); (x.foo: string);
@ -753,8 +760,8 @@ var paths = [
}, },
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x == null) {} if (x == null) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
@ -765,8 +772,8 @@ var paths = [
}, },
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (!(x != null)) {} if (!(x != null)) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
@ -779,13 +786,14 @@ var paths = [
}, },
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x != null) {} if (x != null) {
}
var y: string = x; // not ok var y: string = x; // not ok
}, },
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x != null) {} if (x != null) {
else { } else {
var y: string = x; // not ok var y: string = x; // not ok
} }
}, },
@ -1001,22 +1009,22 @@ var null_tests = [
// expr == null // expr == null
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x == null) {} if (x == null) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p == null) {} if (x.p == null) {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
function() { function() {
var x: { p: { q: ?string } } = { p: { q: \"xxx\" } }; var x: { p: { q: ?string } } = { p: { q: \"xxx\" } };
if (x.p.q == null) {} if (x.p.q == null) {
else { } else {
var y: string = x.p.q; // ok var y: string = x.p.q; // ok
} }
}, },
@ -1042,22 +1050,22 @@ var null_tests = [
// expr === null // expr === null
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x === null) {} if (x === null) {
else { } else {
var y: string | void = x; // ok var y: string | void = x; // ok
} }
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p === null) {} if (x.p === null) {
else { } else {
var y: string | void = x.p; // ok var y: string | void = x.p; // ok
} }
}, },
function() { function() {
var x: { p: { q: ?string } } = { p: { q: \"xxx\" } }; var x: { p: { q: ?string } } = { p: { q: \"xxx\" } };
if (x.p.q === null) {} if (x.p.q === null) {
else { } else {
var y: string | void = x.p.q; // ok var y: string | void = x.p.q; // ok
} }
} }
@ -1406,22 +1414,22 @@ var null_tests = [
// typeof expr != typename // typeof expr != typename
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (typeof x != \"string\") {} if (typeof x != \"string\") {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (typeof x.p != \"string\") {} if (typeof x.p != \"string\") {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
function() { function() {
var x: { p: { q: ?string } } = { p: { q: \"xxx\" } }; var x: { p: { q: ?string } } = { p: { q: \"xxx\" } };
if (typeof x.p.q != \"string\") {} if (typeof x.p.q != \"string\") {
else { } else {
var y: string = x.p.q; // ok var y: string = x.p.q; // ok
} }
}, },
@ -1447,22 +1455,22 @@ var null_tests = [
// typeof expr !== typename // typeof expr !== typename
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (typeof x !== \"string\") {} if (typeof x !== \"string\") {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (typeof x.p !== \"string\") {} if (typeof x.p !== \"string\") {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
function() { function() {
var x: { p: { q: ?string } } = { p: { q: \"xxx\" } }; var x: { p: { q: ?string } } = { p: { q: \"xxx\" } };
if (typeof x.p.q !== \"string\") {} if (typeof x.p.q !== \"string\") {
else { } else {
var y: string = x.p.q; // ok var y: string = x.p.q; // ok
} }
} }
@ -1601,22 +1609,22 @@ var undef_tests = [
// expr === undefined // expr === undefined
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x === undefined || x === null) {} if (x === undefined || x === null) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p === undefined || x.p === null) {} if (x.p === undefined || x.p === null) {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
function() { function() {
var x: { p: { q: ?string } } = { p: { q: \"xxx\" } }; var x: { p: { q: ?string } } = { p: { q: \"xxx\" } };
if (x.p.q === undefined || x.p.q === null) {} if (x.p.q === undefined || x.p.q === null) {
else { } else {
var y: string = x.p.q; // ok var y: string = x.p.q; // ok
} }
} }
@ -1745,22 +1753,22 @@ var void_tests = [
// expr === void(...) // expr === void(...)
function() { function() {
var x: ?string = \"xxx\"; var x: ?string = \"xxx\";
if (x === void 0 || x === null) {} if (x === void 0 || x === null) {
else { } else {
var y: string = x; // ok var y: string = x; // ok
} }
}, },
function() { function() {
var x: { p: ?string } = { p: \"xxx\" }; var x: { p: ?string } = { p: \"xxx\" };
if (x.p === void 0 || x.p === null) {} if (x.p === void 0 || x.p === null) {
else { } else {
var y: string = x.p; // ok var y: string = x.p; // ok
} }
}, },
function() { function() {
var x: { p: { q: ?string } } = { p: { q: \"xxx\" } }; var x: { p: { q: ?string } } = { p: { q: \"xxx\" } };
if (x.p.q === void 0 || x.p.q === null) {} if (x.p.q === void 0 || x.p.q === null) {
else { } else {
var y: string = x.p.q; // ok var y: string = x.p.q; // ok
} }
} }

View File

@ -208,7 +208,8 @@ function testLiteralProperty(a: A) {
type A = { \"b_c\": ?string }; type A = { \"b_c\": ?string };
function stuff(str: string) {} function stuff(str: string) {
}
function testProperty(a: A) { function testProperty(a: A) {
if (a.b_c) { if (a.b_c) {
@ -371,22 +372,29 @@ let tests = [
let tests = [ let tests = [
function(x: string, y: number) { function(x: string, y: number) {
if (x == y) {} if (x == y) {
}
// error, string & number are not comparable (unsafe casting) // error, string & number are not comparable (unsafe casting)
if (x === y) {} // no error, to match \`let z = (x === y)\` which is allowed if (x === y) {
} // no error, to match \`let z = (x === y)\` which is allowed
}, },
function(x: string) { function(x: string) {
if (x == undefined) {} if (x == undefined) {
}
// ok // ok
if (x == void 0) {} // ok if (x == void 0) {
} // ok
}, },
function(x: string) { function(x: string) {
if (x == null) {} // ok if (x == null) {
} // ok
}, },
function(x: { y: \"foo\" } | { y: \"bar\" }) { function(x: { y: \"foo\" } | { y: \"bar\" }) {
if (x.y == 123) {} if (x.y == 123) {
}
// error // error
if (x.y === 123) {} // ok if (x.y === 123) {
} // ok
} }
]; ];
" "
@ -593,7 +601,8 @@ function def_assign_setprop_nohavoc(obj: Obj, obj2: Obj2) {
type Obj = { p: number | string }; type Obj = { p: number | string };
function f() {} function f() {
}
function def_assign_function_havoc(obj: Obj) { function def_assign_function_havoc(obj: Obj) {
obj.p = 10; obj.p = 10;
@ -790,28 +799,36 @@ function foo5() {
o.p(); o.p();
} }
function _foo5() { function _foo5() {
o.p = function() {}; o.p = function() {
};
} }
} }
function foo6(o: mixed) { function foo6(o: mixed) {
if (o.bar) {} // error, any lookup on mixed is unsafe if (o.bar) {
} // error, any lookup on mixed is unsafe
} }
function foo7(o: mixed) { function foo7(o: mixed) {
if (typeof o.bar === \"string\") {} if (typeof o.bar === \"string\") {
}
// error // error
if (o && typeof o.bar === \"string\") {} if (o && typeof o.bar === \"string\") {
}
// ok // ok
if (o != null && typeof o.bar === \"string\") {} if (o != null && typeof o.bar === \"string\") {
}
// ok // ok
if (o !== null && o !== undefined && typeof o.bar === \"string\") {} // ok if (o !== null && o !== undefined && typeof o.bar === \"string\") {
} // ok
} }
function foo8(o: { p: mixed }) { function foo8(o: { p: mixed }) {
if (o.p && o.p.q) {} if (o.p && o.p.q) {
}
// this is ok because o.p is truthy, so o.p.q is safe // this is ok because o.p is truthy, so o.p.q is safe
if (o.p && o.p.q && o.p.q.r) {} if (o.p && o.p.q && o.p.q.r) {
}
} }
" "
`; `;
@ -941,8 +958,10 @@ function arr0(x: mixed) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function takesNumber(x: number) {} function takesNumber(x: number) {
function takesString(x: string) {} }
function takesString(x: string) {
}
function num(x: mixed) { function num(x: mixed) {
if (typeof x === \"number\") { if (typeof x === \"number\") {
@ -1395,10 +1414,12 @@ let tests = [
} }
}, },
function(num: number, obj: { foo: number }) { function(num: number, obj: { foo: number }) {
if (num === obj.bar) {} if (num === obj.bar) {
}
}, },
function(num: number, obj: { [key: string]: number }) { function(num: number, obj: { [key: string]: number }) {
if (num === obj.bar) {} if (num === obj.bar) {
}
}, },
function(n: number): Mode { function(n: number): Mode {
if (n !== 0 && n !== 1 && n !== 2) { if (n !== 0 && n !== 1 && n !== 2) {
@ -1705,7 +1726,8 @@ function bar(b) {
var z: string = x; var z: string = x;
} }
function maybe_throw() {} function maybe_throw() {
}
function qux() { function qux() {
var x = 0; var x = 0;
try { try {
@ -1755,14 +1777,16 @@ function waldo() {
function global_in_conditional0(x: number) { function global_in_conditional0(x: number) {
// merge_env // merge_env
if (x != 0) { if (x != 0) {
if (BAZ) {} if (BAZ) {
}
} }
} }
function global_in_conditional2(x: number) { function global_in_conditional2(x: number) {
// copy_env // copy_env
for (var i = 0; i < 100; i++) { for (var i = 0; i < 100; i++) {
if (BAZ) {} if (BAZ) {
}
} }
} }
" "
@ -1970,10 +1994,12 @@ let tests = [
} }
}, },
function(str: string, obj: { foo: string }) { function(str: string, obj: { foo: string }) {
if (str === obj.bar) {} if (str === obj.bar) {
}
}, },
function(str: string, obj: { [key: string]: string }) { function(str: string, obj: { [key: string]: string }) {
if (str === obj.bar) {} if (str === obj.bar) {
}
}, },
function(str: string): Mode { function(str: string): Mode {
var ch = str[0]; var ch = str[0];
@ -2530,14 +2556,18 @@ let tests = [
}, },
// nested objects // nested objects
function test8(x: { foo: { bar: 1 } }) { function test8(x: { foo: { bar: 1 } }) {
if (x.foo.bar === 1) {} if (x.foo.bar === 1) {
if (x.fooTypo.bar === 1) {} // error, fooTypo doesn\'t exist }
if (x.fooTypo.bar === 1) {
} // error, fooTypo doesn\'t exist
}, },
// invalid RHS // invalid RHS
function(x: A) { function(x: A) {
if (x.kind === null.toString()) {} if (x.kind === null.toString()) {
}
// error, method on null // error, method on null
if ({ kind: 1 }.kind === null.toString()) {} // error, method on null if ({ kind: 1 }.kind === null.toString()) {
} // error, method on null
}, },
// non-objects on LHS // non-objects on LHS
function( function(
@ -2549,28 +2579,32 @@ let tests = [
s: Function, s: Function,
t: () => void t: () => void
) { ) {
if (x.length === 0) {} if (x.length === 0) {
}
if (x.legnth === 0) { if (x.legnth === 0) {
// typos are allowed to be tested // typos are allowed to be tested
(x.legnth: number); (x.legnth: number);
// inside the block, it\'s a number // inside the block, it\'s a number
(x.legnth: string); // error: number literal 0 !~> string (x.legnth: string); // error: number literal 0 !~> string
} }
if (y.length === 0) {} if (y.length === 0) {
}
if (y.legnth === 0) { if (y.legnth === 0) {
// typos are allowed to be tested // typos are allowed to be tested
(y.legnth: number); (y.legnth: number);
// inside the block, it\'s a number // inside the block, it\'s a number
(y.legnth: string); // error: number literal 0 !~> string (y.legnth: string); // error: number literal 0 !~> string
} }
if (z.toString === 0) {} if (z.toString === 0) {
}
if (z.toStirng === 0) { if (z.toStirng === 0) {
// typos are allowed to be tested // typos are allowed to be tested
(z.toStirng: number); (z.toStirng: number);
// inside the block, it\'s a number // inside the block, it\'s a number
(z.toStirng: string); // error: number literal 0 !~> string (z.toStirng: string); // error: number literal 0 !~> string
} }
if (q.valueOf === 0) {} if (q.valueOf === 0) {
}
if (q.valeuOf === 0) { if (q.valeuOf === 0) {
// typos are allowed to be tested // typos are allowed to be tested
(q.valeuOf: number); (q.valeuOf: number);
@ -2581,12 +2615,14 @@ let tests = [
// typos are allowed to be tested // typos are allowed to be tested
(r.toStirng: empty); // props on AnyObjT are \`any\` (r.toStirng: empty); // props on AnyObjT are \`any\`
} }
if (s.call === 0) {} if (s.call === 0) {
}
if (s.calll === 0) { if (s.calll === 0) {
// typos are allowed to be tested // typos are allowed to be tested
(t.calll: empty); // ok, props on functions are \`any\` :/ (t.calll: empty); // ok, props on functions are \`any\` :/
} }
if (t.call === 0) {} if (t.call === 0) {
}
if (t.calll === 0) { if (t.calll === 0) {
// typos are allowed to be tested // typos are allowed to be tested
(t.calll: empty); // ok, props on functions are \`any\` :/ (t.calll: empty); // ok, props on functions are \`any\` :/
@ -2958,8 +2994,8 @@ function undef_var(x: ?number) {
} }
function undef_var_rev(x: ?number) { function undef_var_rev(x: ?number) {
if (x === null || x === undefined) {} if (x === null || x === undefined) {
else { } else {
var y = x * 1000; var y = x * 1000;
} }
} }
@ -2971,8 +3007,8 @@ function undef_prop(x: { x: ?number }) {
} }
function undef_prop_rev(x: { x: ?number }) { function undef_prop_rev(x: { x: ?number }) {
if (x.x === null || x.x === undefined) {} if (x.x === null || x.x === undefined) {
else { } else {
var y = x.x * 1000; var y = x.x * 1000;
} }
} }
@ -2984,8 +3020,8 @@ function undef_var_fail(x: ?number) {
} }
function undef_var_fail_rev(x: ?number) { function undef_var_fail_rev(x: ?number) {
if (x === undefined) {} if (x === undefined) {
else { } else {
var y = x * 1000; var y = x * 1000;
} }
} }
@ -2997,8 +3033,8 @@ function undef_prop_fail(x: { x: ?number }) {
} }
function undef_prop_fail_rev(x: { x: ?number }) { function undef_prop_fail_rev(x: { x: ?number }) {
if (x.x === undefined) {} if (x.x === undefined) {
else { } else {
var y = x.x * 1000; var y = x.x * 1000;
} }
} }
@ -3185,8 +3221,8 @@ function void_var(x: ?number) {
} }
function void_var_rev(x: ?number) { function void_var_rev(x: ?number) {
if (x === null || x === void 0) {} if (x === null || x === void 0) {
else { } else {
var y = x * 1000; var y = x * 1000;
} }
} }
@ -3198,8 +3234,8 @@ function void_pro(x: { x: ?number }) {
} }
function void_pro_rev(x: { x: ?number }) { function void_pro_rev(x: { x: ?number }) {
if (x.x === null || x.x === void 0) {} if (x.x === null || x.x === void 0) {
else { } else {
var y = x.x * 1000; var y = x.x * 1000;
} }
} }
@ -3211,8 +3247,8 @@ function void_var_fail(x: ?number) {
} }
function void_var_fail_rev(x: ?number) { function void_var_fail_rev(x: ?number) {
if (x === void 0) {} if (x === void 0) {
else { } else {
var y = x * 1000; var y = x * 1000;
} }
} }
@ -3224,8 +3260,8 @@ function void_pro_fail(x: { x: ?number }) {
} }
function void_pro_fail_rev(x: { x: ?number }) { function void_pro_fail_rev(x: { x: ?number }) {
if (x.x === void 0) {} if (x.x === void 0) {
else { } else {
var y = x.x * 1000; var y = x.x * 1000;
} }
} }
@ -3237,8 +3273,8 @@ function void_var_side_effect(x: ?number) {
} }
function void_var_side_effect_rev(x: ?number) { function void_var_side_effect_rev(x: ?number) {
if (x === null || x === void (x * 1000)) {} if (x === null || x === void (x * 1000)) {
else { } else {
var y = x * 1000; var y = x * 1000;
} }
} }
@ -3250,8 +3286,8 @@ function void_prop_side_effect(x: { x: ?number }) {
} }
function void_prop_side_effect_rev(x: { x: ?number }) { function void_prop_side_effect_rev(x: { x: ?number }) {
if (x.x === null || x.x === void (x.x * 1000)) {} if (x.x === null || x.x === void (x.x * 1000)) {
else { } else {
var y = x.x * 1000; var y = x.x * 1000;
} }
} }

View File

@ -7,7 +7,8 @@ foo(\"\");
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var a = 0; var a = 0;
function foo(x) {} function foo(x) {
}
foo(\"\"); foo(\"\");
" "

View File

@ -74,7 +74,8 @@ require(\"not a module name\");
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
function require() {} function require() {
}
require(\"not a module name\"); require(\"not a module name\");
" "
`; `;
@ -131,8 +132,10 @@ require.call(null, \"DoesNotExist\");
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function takesANumber(num: number): void {} function takesANumber(num: number): void {
function takesAString(str: string): void {} }
function takesAString(str: string): void {
}
// @providesModule // @providesModule
var A = require(\"A\"); var A = require(\"A\");

View File

@ -85,7 +85,8 @@ var notB: Object = B;
requireLazy(); requireLazy();
// Error: No args // Error: No args
requireLazy([ nope ], function() {}); requireLazy([ nope ], function() {
});
// Error: Non-stringliteral args // Error: Non-stringliteral args
requireLazy([ \"A\" ]); // Error: No calback expression requireLazy([ \"A\" ]); // Error: No calback expression
" "

View File

@ -37,7 +37,8 @@ module.exports = C;
//module.exports = fn; //module.exports = fn;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class C { class C {
foo() {} foo() {
}
bar() { bar() {
return; return;
} }

View File

@ -22,7 +22,8 @@ function Bar() {
} }
var bar: number = new Bar(); var bar: number = new Bar();
// error (returns new object) // error (returns new object)
function Qux() {} function Qux() {
}
var qux: number = new Qux(); var qux: number = new Qux();
// error (returns new object) // error (returns new object)
class A {} class A {}

View File

@ -41,7 +41,8 @@ var export_o: { x:any; } = o; // awkward type cast
module.exports = export_o; module.exports = export_o;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function Foo() {} function Foo() {
}
var o = new Foo(); var o = new Foo();
var x: number = o.x; var x: number = o.x;

View File

@ -3,6 +3,7 @@ exports[`test shebang.js 1`] = `
function a() {} function a() {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/bin/env node #!/usr/bin/env node
function a() {} function a() {
}
" "
`; `;

View File

@ -122,7 +122,8 @@ bar(2);
bar(3); bar(3);
// error // error
type ComparatorResult = -1 | 0 | 1; type ComparatorResult = -1 | 0 | 1;
function sort(fn: (x: any, y: any) => ComparatorResult) {} function sort(fn: (x: any, y: any) => ComparatorResult) {
}
sort((x, y) => -1); sort((x, y) => -1);
" "
`; `;

View File

@ -74,7 +74,8 @@ foo({foo: 42});
function foo(o) { function foo(o) {
bar({ ...o }); bar({ ...o });
} }
function bar(_: { foo: number }) {} function bar(_: { foo: number }) {
}
foo({ foo: 42 }); foo({ foo: 42 });
" "
`; `;
@ -118,7 +119,8 @@ function test(...nums: Array<number>) {}
test(0, ...[1, 2, 3]); test(0, ...[1, 2, 3]);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function test(...nums: Array<number>) {} function test(...nums: Array<number>) {
}
test(0, ...[ 1, 2, 3 ]); test(0, ...[ 1, 2, 3 ]);
" "

View File

@ -10,7 +10,8 @@ C.g(0);
var x:number = C.x; var x:number = C.x;
C.x = 0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C.x = 0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class C { class C {
static f(x: number) {} static f(x: number) {
}
static x: string; static x: string;
} }
@ -31,7 +32,8 @@ C.g = function(x) { return x; };
var x:string = new C().f(); var x:string = new C().f();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function C() {} function C() {
}
C.prototype.f = function() { C.prototype.f = function() {
return C.g(0); return C.g(0);
}; };

View File

@ -15,7 +15,8 @@ class B extends A {
foo(x: A): A { foo(x: A): A {
return x; return x;
} }
bar(x) {} bar(x) {
}
qux<X, Y>(x: X, y: Y): X { qux<X, Y>(x: X, y: Y): X {
return x; return x;
} }

View File

@ -223,7 +223,8 @@ class I_ {
constructor(leaked_this) { constructor(leaked_this) {
leaked_this.foo(); leaked_this.foo();
} }
foo() {} foo() {
}
} }
class I extends I_ { class I extends I_ {
constructor() { constructor() {
@ -237,7 +238,8 @@ class J_ extends J__ {
closure_leaking_this(); closure_leaking_this();
super(); super();
} }
foo() {} foo() {
}
} }
class J extends J_ { class J extends J_ {
constructor() { constructor() {
@ -255,7 +257,8 @@ class K_ {
constructor(closure_leaking_this) { constructor(closure_leaking_this) {
this.closure_leaking_this = closure_leaking_this; this.closure_leaking_this = closure_leaking_this;
} }
foo() {} foo() {
}
} }
class K extends K_ { class K extends K_ {
constructor() { constructor() {
@ -359,11 +362,13 @@ class B extends A {
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class A { class A {
constructor(x: number) {} constructor(x: number) {
}
static staticMethod(x: string): string { static staticMethod(x: string): string {
return x; return x;
} }
f(x: string) {} f(x: string) {
}
} }
class B extends A { class B extends A {

View File

@ -69,7 +69,8 @@ function runTest(y: number): void {
); );
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function takesAString(x: string): void {} function takesAString(x: string): void {
}
function runTest(y: number): void { function runTest(y: number): void {
takesAString( takesAString(

View File

@ -61,7 +61,8 @@ function a() {
} }
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const c = () => {}; const c = () => {
};
function a() { function a() {
return function b() { return function b() {
@ -88,7 +89,8 @@ function a() {
} }
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const c = () => {}; const c = () => {
};
function a() { function a() {
return function b() { return function b() {

View File

@ -14,7 +14,10 @@ var x = {
\` \`
}; };
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var o = { [\`key\`]: () => {} }; var o = {
[\`key\`]: () => {
}
};
var x = { var x = {
y: () => Relay.QL\` y: () => Relay.QL\`

View File

@ -69,7 +69,8 @@ F.prototype.m = function() {
this.y = 0; this.y = 0;
}; };
function foo(p: string) {} function foo(p: string) {
}
var o1 = new F(); var o1 = new F();
// sets o1.x to 0 // sets o1.x to 0
@ -190,7 +191,8 @@ var j = g();
(j: D); (j: D);
// error, since return type of bar is C, not the type of \`this\` // error, since return type of bar is C, not the type of \`this\`
class E { class E {
foo(x: number) {} foo(x: number) {
}
} }
class F extends E { class F extends E {
foo() { foo() {

View File

@ -89,11 +89,13 @@ var d = new D();
(d.next: D); (d.next: D);
// sneaky // sneaky
class A { class A {
foo<X: this>(that: X) {} // error: can\'t hide contravariance using a bound foo<X: this>(that: X) {
} // error: can\'t hide contravariance using a bound
} }
class B extends A { class B extends A {
foo<Y: this>(that: Y) {} // error (see above, catches hidden override) foo<Y: this>(that: Y) {
} // error (see above, catches hidden override)
} }
// covariance checks on this type in invariant positions // covariance checks on this type in invariant positions
@ -101,13 +103,15 @@ class Invariant {
out_object(): { _: this } { out_object(): { _: this } {
return { _: this }; return { _: this };
} }
in_object(_: { _: this }) {} in_object(_: { _: this }) {
}
inout_object: { _: this }; inout_object: { _: this };
out_array(): Array<this> { out_array(): Array<this> {
return [ this ]; return [ this ];
} }
in_array(_: Array<this>) {} in_array(_: Array<this>) {
}
inout_array: Array<this>; inout_array: Array<this>;
} }
@ -117,14 +121,16 @@ class Misc {
out_set(): Set<this> { out_set(): Set<this> {
return new Set().add(this); return new Set().add(this);
} }
in_set(_: Set<this>) {} in_set(_: Set<this>) {
}
inout_set: Set<this>; inout_set: Set<this>;
// Promise<X> has covariant X // Promise<X> has covariant X
async out_promise(): Promise<this> { async out_promise(): Promise<this> {
return this; return this;
} }
in_promise(_: Promise<this>) {} in_promise(_: Promise<this>) {
}
inout_promise: Promise<this>; inout_promise: Promise<this>;
// Generator<X,Y,Z> has covariant X, covariant Y, contravariant Z // Generator<X,Y,Z> has covariant X, covariant Y, contravariant Z
@ -132,7 +138,8 @@ class Misc {
yield this; yield this;
return this; return this;
} }
in_generator(_: Generator<this, this, this>) {} in_generator(_: Generator<this, this, this>) {
}
inout_generator: Generator<this, this, this>; inout_generator: Generator<this, this, this>;
} }
" "
@ -517,8 +524,10 @@ class Base2 {
return this.bar(); return this.bar();
} }
corge(that: this) {} corge(that: this) {
grault(that: Base2) {} }
grault(that: Base2) {
}
} }
class Inherit2 extends Base2 {} class Inherit2 extends Base2 {}
@ -537,10 +546,12 @@ class Override2 extends Base2 {
} }
// error (cf. OK above) // error (cf. OK above)
// see exploit below // see exploit below
corge(that: this) {} corge(that: this) {
}
// error // error
// see exploit below // see exploit below
grault(that: this) {} // error, too grault(that: this) {
} // error, too
} }
class InheritOverride2 extends Override2 {} class InheritOverride2 extends Override2 {}

View File

@ -21,21 +21,24 @@ function double(n) { return n * 2 }
f3(double); f3(double);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// arg/param type mismatch on arg 0 // arg/param type mismatch on arg 0
function g0(y: string) {} function g0(y: string) {
}
function f0(x) { function f0(x) {
g0(x); g0(x);
} }
f0(0); f0(0);
// ...on arg n // ...on arg n
function g1(a: string, b: string) {} function g1(a: string, b: string) {
}
function f1(x, y) { function f1(x, y) {
g1(x, y); g1(x, y);
} }
f1(\"hey\", 0); f1(\"hey\", 0);
// h/o call with function expr // h/o call with function expr
function g2(ylam: (s: string) => number) {} function g2(ylam: (s: string) => number) {
}
function f2(xlam) { function f2(xlam) {
g2(xlam); g2(xlam);
} }
@ -44,7 +47,8 @@ f2(function(x) {
}); });
// h/o call with function def // h/o call with function def
function g3(ylam: (s: string) => number) {} function g3(ylam: (s: string) => number) {
}
function f3(xlam) { function f3(xlam) {
g3(xlam); g3(xlam);
} }

View File

@ -11,7 +11,8 @@ a(
a(\'value\', \'value2\', a(\'long-nested-value\', \'long-nested-value2\', \'long-nested-value3\')); a(\'value\', \'value2\', a(\'long-nested-value\', \'long-nested-value2\', \'long-nested-value3\'));
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const a = (param1, param2, param3) => {}; const a = (param1, param2, param3) => {
};
a(\"value\", \"value2\", \"value3\"); a(\"value\", \"value2\", \"value3\");
@ -42,7 +43,8 @@ a(
a(\'value\', \'value2\', a(\'long-nested-value\', \'long-nested-value2\', \'long-nested-value3\')); a(\'value\', \'value2\', a(\'long-nested-value\', \'long-nested-value2\', \'long-nested-value3\'));
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const a = (param1, param2, param3) => {}; const a = (param1, param2, param3) => {
};
a(\"value\", \"value2\", \"value3\"); a(\"value\", \"value2\", \"value3\");

View File

@ -23,7 +23,8 @@ function foo() {
* abnormal. It was weird. * abnormal. It was weird.
*/ */
function foo() { function foo() {
try {} catch (error) { try {
} catch (error) {
if (error.foo === 4) { if (error.foo === 4) {
throw error; throw error;
} }
@ -195,19 +196,22 @@ function f(b) {
// for illustrative purposes only - Flow considers a throw possible // for illustrative purposes only - Flow considers a throw possible
// anywhere within a block // anywhere within a block
function might_throw() {} function might_throw() {
}
// local use of annotated var within try is ok // local use of annotated var within try is ok
function f() { function f() {
try { try {
var x: number = 0; var x: number = 0;
var y: number = x; var y: number = x;
} catch (e) {} } catch (e) {
}
} }
// and within catch // and within catch
function f() { function f() {
try {} catch (e) { try {
} catch (e) {
var x: number = 0; var x: number = 0;
var y: number = x; var y: number = x;
} }
@ -235,7 +239,8 @@ function f() {
// or catch/finally // or catch/finally
function f() { function f() {
try {} catch (e) { try {
} catch (e) {
var x: number = 0; var x: number = 0;
} finally { } finally {
var y: number = x; // error var y: number = x; // error
@ -268,7 +273,9 @@ function f() {
// and here // and here
function f() { function f() {
try {} catch (e) {} finally { try {
} catch (e) {
} finally {
might_throw(); might_throw();
// ...but if so, suffix is not reached // ...but if so, suffix is not reached
var x: number = 0; var x: number = 0;
@ -280,7 +287,8 @@ function f() {
function f() { function f() {
try { try {
var x: number; var x: number;
} catch (e) {} finally { } catch (e) {
} finally {
might_throw(); might_throw();
// ...but if so, suffix is not reached // ...but if so, suffix is not reached
x = 0; x = 0;
@ -290,7 +298,8 @@ function f() {
// and here, thank you JS for the wonder that is hoisting // and here, thank you JS for the wonder that is hoisting
function f() { function f() {
try {} catch (e) { try {
} catch (e) {
var x: number; var x: number;
} finally { } finally {
might_throw(); might_throw();
@ -306,20 +315,23 @@ function f() {
// error // error
try { try {
var x: number = 0; var x: number = 0;
} catch (e) {} } catch (e) {
}
} }
// another non-dominated post // another non-dominated post
function f() { function f() {
try { try {
var x: number = 0; var x: number = 0;
} catch (e) {} } catch (e) {
}
var y: number = x; // error var y: number = x; // error
} }
// ditto // ditto
function f() { function f() {
try {} catch (e) { try {
} catch (e) {
var x: number = 0; var x: number = 0;
} }
var y: number = x; // error var y: number = x; // error
@ -333,7 +345,8 @@ function f(b) {
throw new Error(); throw new Error();
} }
x = 0; x = 0;
} catch (e) {} } catch (e) {
}
var y: number = x; // error var y: number = x; // error
} }
" "
@ -411,7 +424,8 @@ function corge(): string {
*/ */
function foo(x: ?number): string { function foo(x: ?number): string {
try {} catch (e) { try {
} catch (e) {
return \"bar\"; return \"bar\";
} }
console.log(); console.log();
@ -438,7 +452,8 @@ function baz(): string {
function qux(): string { function qux(): string {
try { try {
throw new Error(\"foo\"); throw new Error(\"foo\");
} catch (e) {} } catch (e) {
}
console.log(); console.log();
return \"bar\"; return \"bar\";
} }
@ -446,7 +461,8 @@ function qux(): string {
function quux(): string { function quux(): string {
try { try {
return qux(); return qux();
} catch (e) {} } catch (e) {
}
return \"bar\"; return \"bar\";
} }
@ -545,14 +561,16 @@ function bar(response) {
throw new Error(\"...\"); throw new Error(\"...\");
} }
// here via [try] only. // here via [try] only.
if (payload.error) {} if (payload.error) {
}
} }
function qux() { function qux() {
var x = 5; var x = 5;
try { try {
throw -1; throw -1;
} finally {} } finally {
}
x(); // unreachable x(); // unreachable
} }
" "

View File

@ -48,7 +48,8 @@ foo([ {} ]); // error, too few elements in array passed to a tuple
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */ /* @flow */
function foo(a: [Object, Object]) {} function foo(a: [Object, Object]) {
}
foo([ {} ]); // error, too few elements in array passed to a tuple foo([ {} ]); // error, too few elements in array passed to a tuple
" "

View File

@ -59,7 +59,10 @@ const y = {
// foo(): void {} // foo(): void {}
// } // }
const y = { bar(): void {} }; const y = {
bar(): void {
}
};
" "
`; `;
@ -132,7 +135,8 @@ module.exports = num;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
var num = 42; var num = 42;
function bar() {} function bar() {
}
bar(); bar();
module.exports = num; module.exports = num;
" "
@ -205,9 +209,12 @@ if (Array.isArray(x)) {}
/* @flow */ /* @flow */
let x = 0; let x = 0;
if (x == null) {} if (x == null) {
if (x == undefined) {} }
if (Array.isArray(x)) {} if (x == undefined) {
}
if (Array.isArray(x)) {
}
" "
`; `;
@ -247,7 +254,8 @@ const w:MyNum = 42;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow // @flow
var str = require(\"./import\"); var str = require(\"./import\");
function foo() {} function foo() {
}
foo(); foo();
str; str;
@ -273,6 +281,7 @@ try {
try { try {
throw \"foo\"; throw \"foo\";
} catch (e) {} } catch (e) {
}
" "
`; `;

View File

@ -15,7 +15,8 @@ class C<T> {
this.b(a); // error: A ~> incompatible instance of T this.b(a); // error: A ~> incompatible instance of T
} }
b(x: T) {} b(x: T) {
}
} }
" "
`; `;
@ -36,7 +37,8 @@ f(0); // ok
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function f<T>(a: T) { function f<T>(a: T) {
function g<U>(b: U, c: T = a) { function g<U>(b: U, c: T = a) {
function h(d: U = b) {} function h(d: U = b) {
}
h(); h();
// ok // ok
h(b); h(b);

View File

@ -42,7 +42,8 @@ var tests = [
// (parens always required around typecasts) // (parens always required around typecasts)
var s: string = ((0: number), (\"hey\": string)); var s: string = ((0: number), (\"hey\": string));
}, },
() => {} () => {
}
]; ];
" "
`; `;

View File

@ -22,7 +22,8 @@ function doSomethingAsync(): Promise<void> {
} }
// simpler repro to show that too few args are fine when expecting void // simpler repro to show that too few args are fine when expecting void
function foo(x: void) {} function foo(x: void) {
}
foo(); foo();
" "
`; `;
@ -50,7 +51,8 @@ function bar() {
if (x) x.bar(); if (x) x.bar();
} }
function qux(x?: number, y: string = \"\", z) {} function qux(x?: number, y: string = \"\", z) {
}
" "
`; `;

View File

@ -110,8 +110,27 @@ myclass.myfun([\"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", function (ar) {}
declare class Myclass { myfun(myarray: Array<Function | string>): any } declare class Myclass { myfun(myarray: Array<Function | string>): any }
declare var myclass: Myclass; declare var myclass: Myclass;
myclass.myfun([ \"1\", \"2\", \"3\", \"4\", \"5\", \"6\", function(ar) {} ]); myclass.myfun([
myclass.myfun([ \"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", function(ar) {} ]); \"1\",
\"2\",
\"3\",
\"4\",
\"5\",
\"6\",
function(ar) {
}
]);
myclass.myfun([
\"1\",
\"2\",
\"3\",
\"4\",
\"5\",
\"6\",
\"7\",
function(ar) {
}
]);
" "
`; `;
@ -325,7 +344,8 @@ type Foo<X: ?C> = Array<X>;
// workaround // workaround
var x: Array<C> = []; var x: Array<C> = [];
var y: Array<?C> = []; var y: Array<?C> = [];
function foo<X>(x: Foo<X>) {} function foo<X>(x: Foo<X>) {
}
foo(x); foo(x);
foo(y); foo(y);
@ -336,7 +356,8 @@ type Bar = () => C | string;
function f() { function f() {
return \"\"; return \"\";
} }
function bar(x: Bar) {} function bar(x: Bar) {
}
bar(f); bar(f);
" "
`; `;
@ -410,7 +431,8 @@ function corge(b) {
new F().foo(x); new F().foo(x);
} }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function bar(x: Document | string): void {} function bar(x: Document | string): void {
}
bar(0); bar(0);
class C {} class C {}
@ -419,9 +441,11 @@ function CD(b) {
var E = b ? C : D; var E = b ? C : D;
var c: C = new E(); var c: C = new E();
// error, since E could be D, and D is not a subtype of C // error, since E could be D, and D is not a subtype of C
function qux(e: E) {} function qux(e: E) {
}
// this annotation is an error: is it C, or is it D? // this annotation is an error: is it C, or is it D?
function qux2(e: C | D) {} function qux2(e: C | D) {
}
// OK // OK
qux2(new C()); qux2(new C());
} }

View File

@ -157,7 +157,8 @@ function node(content: ?Foobar | String | Array<String>) {
/* @flow */ /* @flow */
import type { Foobar } from \"./issue-1455-helper\"; import type { Foobar } from \"./issue-1455-helper\";
function create(content: ?Foobar | String | Array<String>) {} function create(content: ?Foobar | String | Array<String>) {
}
function node(content: ?Foobar | String | Array<String>) { function node(content: ?Foobar | String | Array<String>) {
create(content); create(content);
@ -490,7 +491,8 @@ type B4 = string;
///////////////////////////////////////////// /////////////////////////////////////////////
// similar example with class instance types // similar example with class instance types
///////////////////////////////////////////// /////////////////////////////////////////////
function inst(a: A5 | A6) {} function inst(a: A5 | A6) {
}
class B5 {} class B5 {}
class B6 {} class B6 {}
@ -590,7 +592,8 @@ type B6 = string;
// example with object types // example with object types
////////////////////////////// //////////////////////////////
function obj(a: { x: number } | { x: string }) {} function obj(a: { x: number } | { x: string }) {
}
obj(({ x: \"\" }: A1)); obj(({ x: \"\" }: A1));
@ -601,7 +604,8 @@ type B1 = string;
/////////////////////////////////////// ///////////////////////////////////////
// similar example with function types // similar example with function types
/////////////////////////////////////// ///////////////////////////////////////
function fun(a: (() => number) | (() => string)) {} function fun(a: (() => number) | (() => string)) {
}
fun((() => \"\": A2)); fun((() => \"\": A2));
@ -614,7 +618,8 @@ type B2 = string;
///////////////////////////////////////////////////// /////////////////////////////////////////////////////
class C<X> {} class C<X> {}
function inst(a: C<number> | C<string>) {} function inst(a: C<number> | C<string>) {
}
inst((new C(): A3)); inst((new C(): A3));
@ -625,8 +630,12 @@ type B3 = string;
///////////////////////////////////////////// /////////////////////////////////////////////
// similar example with generic type aliases // similar example with generic type aliases
///////////////////////////////////////////// /////////////////////////////////////////////
function alias(a: T<number> | T<string>) {} function alias(a: T<number> | T<string>) {
alias({ x: (x: V<B4>) => {} }); }
alias({
x: (x: V<B4>) => {
}
});
type T<X> = { x: U<X> }; type T<X> = { x: U<X> };
type U<X> = (x: V<X>) => void; type U<X> = (x: V<X>) => void;
@ -635,7 +644,8 @@ type V<X> = X;
type B4 = string; type B4 = string;
// class statics // class statics
function stat(a: { x: number } | { x: string }) {} function stat(a: { x: number } | { x: string }) {
}
class D { class D {
static x: B5; static x: B5;
@ -646,7 +656,8 @@ stat(D);
type B5 = string; type B5 = string;
// tuples // tuples
function tup(a: [number, boolean] | [string, boolean]) {} function tup(a: [number, boolean] | [string, boolean]) {
}
tup(([ \"\", false ]: A6)); tup(([ \"\", false ]: A6));
@ -696,9 +707,13 @@ type B2 = string;
// example with function types // example with function types
/////////////////////////////// ///////////////////////////////
function fun(a: ((x: number) => void) | ((x: string) => void)) {} function fun(a: ((x: number) => void) | ((x: string) => void)) {
}
fun((x => {}: A1)); fun(
(x => {
}: A1)
);
type A1 = (x: B1) => void; type A1 = (x: B1) => void;
@ -707,7 +722,8 @@ type B1 = string;
//////////////////////////// ////////////////////////////
// example with array types // example with array types
//////////////////////////// ////////////////////////////
function arr(a: number[] | string[]) {} function arr(a: number[] | string[]) {
}
arr(([]: A2)); arr(([]: A2));
@ -765,9 +781,11 @@ type B2 = string;
// example with function types // example with function types
/////////////////////////////// ///////////////////////////////
function fun(a: ((x: number) => void) | ((x: string) => void)) {} function fun(a: ((x: number) => void) | ((x: string) => void)) {
}
const a1 = (x => {}: A1); const a1 = (x => {
}: A1);
fun(a1); fun(a1);
function fun_call(x: string) { function fun_call(x: string) {
@ -781,7 +799,8 @@ type B1 = string;
//////////////////////////// ////////////////////////////
// example with array types // example with array types
//////////////////////////// ////////////////////////////
function arr(a: number[] | string[]) {} function arr(a: number[] | string[]) {
}
const a2 = ([]: A2); const a2 = ([]: A2);
arr(a2); arr(a2);
@ -838,7 +857,8 @@ function arr_set(x: string, i: number) { a2[i] = x; }
// example with function types // example with function types
/////////////////////////////// ///////////////////////////////
function fun(a: ((x: number) => number) | ((x: string) => string)) {} function fun(a: ((x: number) => number) | ((x: string) => string)) {
}
function a1(x) { function a1(x) {
return x; return x;
@ -852,7 +872,8 @@ function fun_call(x: string): string {
///////////////////////////// /////////////////////////////
// example with array types // example with array types
///////////////////////////// /////////////////////////////
function arr(a: number[] | string[]) {} function arr(a: number[] | string[]) {
}
var a2 = []; var a2 = [];
arr(a2); arr(a2);
@ -961,7 +982,8 @@ type PG<X> = { x: X, y?: PG<X> };
// recursive types // recursive types
//////////////////// ////////////////////
function rec(x: F1 | F2) {} function rec(x: F1 | F2) {
}
rec({ x: 0 }); rec({ x: 0 });
type F1 = G1; type F1 = G1;
@ -974,7 +996,8 @@ type H2 = number;
/////////////////////////////// ///////////////////////////////
// polymorphic recursive types // polymorphic recursive types
/////////////////////////////// ///////////////////////////////
function polyrec(x: PF<number> | PF<string>) {} function polyrec(x: PF<number> | PF<string>) {
}
rec({ x: 0 }); rec({ x: 0 });
type PF<X> = PG<X>; type PF<X> = PG<X>;
@ -1017,7 +1040,8 @@ type H2_ = number;
// nested union types // nested union types
////////////////////// //////////////////////
function rec(x: F1 | F2) {} function rec(x: F1 | F2) {
}
rec({ x: 0 }); rec({ x: 0 });
type F1 = G1 | G1_; type F1 = G1 | G1_;
@ -1065,7 +1089,8 @@ function square(x? = 0) {
return x * x; return x * x;
} }
function foo(f: ((_: ?number) => ?number) | (() => void)) {} function foo(f: ((_: ?number) => ?number) | (() => void)) {
}
foo((x): number => square(x)); foo((x): number => square(x));
" "
`; `;
@ -1153,7 +1178,8 @@ function id<X>(x: X): X {
///////////////////////// /////////////////////////
// primitive annotations // primitive annotations
///////////////////////// /////////////////////////
function check_prim(_: number | string) {} function check_prim(_: number | string) {
}
// ok // ok
check_prim(\"\"); check_prim(\"\");
@ -1166,7 +1192,8 @@ check_prim(id(\"\"));
////////////////////////////// //////////////////////////////
class C {} class C {}
class D {} class D {}
function check_inst(_: C | D) {} function check_inst(_: C | D) {
}
// ok // ok
check_inst(new D()); check_inst(new D());
@ -1177,7 +1204,8 @@ check_inst(id(new C()));
//////////////////////// ////////////////////////
// function annotations // function annotations
//////////////////////// ////////////////////////
function check_fun(_: ((_: number) => number) | ((_: string) => string)) {} function check_fun(_: ((_: number) => number) | ((_: string) => string)) {
}
// help! // help!
check_fun(x => x); check_fun(x => x);
@ -1185,7 +1213,8 @@ check_fun(x => x);
////////////////////// //////////////////////
// object annotations // object annotations
////////////////////// //////////////////////
function check_obj(_: { x: number } | { x: string }) {} function check_obj(_: { x: number } | { x: string }) {
}
// ok // ok
check_obj({ x: \"\" }); check_obj({ x: \"\" });
@ -1196,7 +1225,8 @@ check_obj({ x: id(\"\") });
///////////////////// /////////////////////
// array annotations // array annotations
///////////////////// /////////////////////
function check_arr(_: number[] | string[]) {} function check_arr(_: number[] | string[]) {
}
// ok // ok
check_arr([ \"\" ]); check_arr([ \"\" ]);
@ -1208,7 +1238,8 @@ check_arr([ id(\"\") ]);
// generic class instance annotations // generic class instance annotations
////////////////////////////////////// //////////////////////////////////////
class P<X> {} class P<X> {}
function check_poly_inst(_: P<number> | P<string>) {} function check_poly_inst(_: P<number> | P<string>) {
}
// help! // help!
check_poly_inst(new P()); check_poly_inst(new P());
@ -1325,7 +1356,8 @@ function foo(c: C<number>) {
declare class C<X> { get(): X } declare class C<X> { get(): X }
function union(o: { x: string } | { x: number }) {} function union(o: { x: string } | { x: number }) {
}
function foo(c: C<number>) { function foo(c: C<number>) {
union({ x: c.get() }); union({ x: c.get() });
@ -1364,7 +1396,8 @@ bar(() => { });
// functions as objects // functions as objects
function foo<X>(target: EventTarget) { function foo<X>(target: EventTarget) {
target.addEventListener(\"click\", e => {}); target.addEventListener(\"click\", e => {
});
} }
declare class EventTarget { declare class EventTarget {
@ -1379,9 +1412,11 @@ type EventHandler = (event: Event) => mixed;
type KeyboardEventHandler = (event: KeyboardEvent) => mixed; type KeyboardEventHandler = (event: KeyboardEvent) => mixed;
// example where globals are not yet resolved // example where globals are not yet resolved
function bar(x: (() => void) | { x: number }) {} function bar(x: (() => void) | { x: number }) {
}
bar(() => {}); bar(() => {
});
" "
`; `;
@ -1414,10 +1449,12 @@ type Foo = T | (() => boolean);
type Bar = number | (() => string) | (() => boolean); type Bar = number | (() => string) | (() => boolean);
function foo(x: Foo) {} function foo(x: Foo) {
}
foo(() => qux()); foo(() => qux());
function bar(x: Bar) {} function bar(x: Bar) {
}
bar(() => qux()); bar(() => qux());
var x = false; var x = false;

View File

@ -61,7 +61,8 @@ class C {
return new C(); return new C();
} }
} }
function blah() {} function blah() {
}
var node: ?C = new C(); var node: ?C = new C();
while (node) { while (node) {
var parent = node.m(); var parent = node.m();