prettier/tests/flow/type_args_nonstrict/__snapshots__/jsfmt.spec.js.snap

148 lines
2.7 KiB
Plaintext
Raw Normal View History

exports[`test test.js 1`] = `
"/**
* Test nonstrict type param arity checking,
* as enabled by
*
* [options]
* experimental.strict_type_args=false
*
* in .flowconfig.
*
* @flow
*/
// no arity error in type annotation using polymorphic class
class MyClass<T> {
x: T;
constructor(x: T) {
this.x = x;
}
}
var c: MyClass = new MyClass(0); // no error
// no arity error in type annotation using polymorphic class with defaulting
class MyClass2<T, U = string> {
x: T;
y: U;
constructor(x: T, y: U) {
this.x = x;
this.y = y;
}
}
2016-12-30 19:56:42 +03:00
var c2: MyClass2 = new MyClass2(0, \"\"); // no error
// no arity error in type annotation using polymorphic type alias
type MyObject<T> = {
x: T;
}
var o: MyObject = { x: 0 }; // no error
// arity error in type alias rhs
type MySubobject = { y: number } & MyObject; // no error
// arity error in interface extends
interface MyInterface<T> {
x: T;
}
interface MySubinterface extends MyInterface { // no error
y: number;
}
// no arity error in extends of polymorphic class
class MySubclass extends MyClass { // ok, type arg inferred
y: number;
constructor(y: number) {
super(y);
}
}
// no arity error in call of polymorphic function
function singleton<T>(x: T):Array<T> { return [x]; }
var num_array:Array<number> = singleton(0); // ok, type arg inferred
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/**
* Test nonstrict type param arity checking,
* as enabled by
*
* [options]
* experimental.strict_type_args=false
*
* in .flowconfig.
*
* @flow
*/
// no arity error in type annotation using polymorphic class
class MyClass<T> {
x: T;
constructor(x: T) {
this.x = x;
}
}
var c: MyClass = new MyClass(0); // no error
// no arity error in type annotation using polymorphic class with defaulting
class MyClass2<T, U=string> {
x: T;
y: U;
constructor(x: T, y: U) {
this.x = x;
this.y = y;
}
}
var c2: MyClass2 = new MyClass2(0, \"\"); // no error
// no arity error in type annotation using polymorphic type alias
type MyObject<T> = {
x: T
};
var o: MyObject = { x: 0 }; // no error
// arity error in type alias rhs
type MySubobject = { y: number } & MyObject; // no error
// arity error in interface extends
interface MyInterface<T> {
x: T
}
interface MySubinterface extends MyInterface { // no error
y: number
}
// no arity error in extends of polymorphic class
class MySubclass
extends MyClass { // ok, type arg inferred
y: number;
constructor(y: number) {
super(y);
}
}
// no arity error in call of polymorphic function
function singleton<T>(x: T): Array<T> {
return [x];
}
2017-01-11 18:16:38 +03:00
var num_array: Array<number> = singleton(0); // ok, type arg inferred
"
`;