Add support for object type spread (#5525)

* Add support for object type spread

* Type spread: remove variance and add stripping test
This commit is contained in:
Conrad Buck
2017-04-20 08:59:45 -07:00
committed by Henry Zhu
parent 14ed03127c
commit 8434f89bc0
6 changed files with 29 additions and 0 deletions

View File

@@ -331,6 +331,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(".");