* Add support for object type spread * Type spread: remove variance and add stripping test * Fix tests
This commit is contained in:
parent
a1a795321a
commit
60adcd68a0
@ -333,6 +333,11 @@ export function ObjectTypeProperty(node: Object) {
|
||||
this.print(node.value, node);
|
||||
}
|
||||
|
||||
export function ObjectTypeSpreadProperty(node: Object) {
|
||||
this.token("...");
|
||||
this.print(node.argument, node);
|
||||
}
|
||||
|
||||
export function QualifiedTypeIdentifier(node: Object) {
|
||||
this.print(node.qualification, node);
|
||||
this.token(".");
|
||||
|
||||
7
packages/babel-generator/test/fixtures/flow/object-literal-types/actual.js
vendored
Normal file
7
packages/babel-generator/test/fixtures/flow/object-literal-types/actual.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
type U = {};
|
||||
type V = {};
|
||||
type T = { ...U, };
|
||||
type T = { ...U, ...V };
|
||||
type T = { p: V, ...U };
|
||||
type T = { ...U, p: V, };
|
||||
type T = { ...{}|{ p: V, }};
|
||||
7
packages/babel-generator/test/fixtures/flow/object-literal-types/expected.js
vendored
Normal file
7
packages/babel-generator/test/fixtures/flow/object-literal-types/expected.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
type U = {};
|
||||
type V = {};
|
||||
type T = { ...U };
|
||||
type T = { ...U; ...V; };
|
||||
type T = { p: V; ...U; };
|
||||
type T = { ...U; p: V; };
|
||||
type T = { ...{} | { p: V } };
|
||||
@ -44,6 +44,7 @@ var a: { subObj: {strVal: string} }
|
||||
var a: { subObj: ?{strVal: string} }
|
||||
var a: { param1: number; param2: string }
|
||||
var a: { param1: number; param2?: string }
|
||||
var a: { ...any; ...{}|{p: void} };
|
||||
var a: { [a: number]: string; [b: number]: string; };
|
||||
var a: { add(x: number, ...y: Array<string>): void };
|
||||
var a: { id<T>(x: T): T; };
|
||||
|
||||
@ -47,6 +47,7 @@ var a;
|
||||
var a;
|
||||
var a;
|
||||
var a;
|
||||
var a;
|
||||
var a = [1, 2, 3];
|
||||
a = class Foo {};
|
||||
a = class Foo extends Bar {};
|
||||
|
||||
@ -308,6 +308,14 @@ defineType("ObjectTypeProperty", {
|
||||
}
|
||||
});
|
||||
|
||||
defineType("ObjectTypeSpreadProperty", {
|
||||
visitor: ["argument"],
|
||||
aliases: ["Flow", "UserWhitespacable"],
|
||||
fields: {
|
||||
// todo
|
||||
},
|
||||
});
|
||||
|
||||
defineType("QualifiedTypeIdentifier", {
|
||||
visitor: ["id", "qualification"],
|
||||
aliases: ["Flow"],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user