* removed class-constructor-call syntax and transform plugins and all references to them * #5112, removed another reference to constructor call
86 lines
1.6 KiB
JavaScript
86 lines
1.6 KiB
JavaScript
export function ClassDeclaration(node: Object) {
|
|
this.printJoin(node.decorators, node);
|
|
this.word("class");
|
|
|
|
if (node.id) {
|
|
this.space();
|
|
this.print(node.id, node);
|
|
}
|
|
|
|
this.print(node.typeParameters, node);
|
|
|
|
if (node.superClass) {
|
|
this.space();
|
|
this.word("extends");
|
|
this.space();
|
|
this.print(node.superClass, node);
|
|
this.print(node.superTypeParameters, node);
|
|
}
|
|
|
|
if (node.implements) {
|
|
this.space();
|
|
this.word("implements");
|
|
this.space();
|
|
this.printList(node.implements, node);
|
|
}
|
|
|
|
this.space();
|
|
this.print(node.body, node);
|
|
}
|
|
|
|
export { ClassDeclaration as ClassExpression };
|
|
|
|
export function ClassBody(node: Object) {
|
|
this.token("{");
|
|
this.printInnerComments(node);
|
|
if (node.body.length === 0) {
|
|
this.token("}");
|
|
} else {
|
|
this.newline();
|
|
|
|
this.indent();
|
|
this.printSequence(node.body, node);
|
|
this.dedent();
|
|
|
|
if (!this.endsWith("\n")) this.newline();
|
|
|
|
this.rightBrace();
|
|
}
|
|
}
|
|
|
|
export function ClassProperty(node: Object) {
|
|
this.printJoin(node.decorators, node);
|
|
|
|
if (node.static) {
|
|
this.word("static");
|
|
this.space();
|
|
}
|
|
if (node.computed) {
|
|
this.token("[");
|
|
this.print(node.key, node);
|
|
this.token("]");
|
|
} else {
|
|
this._variance(node);
|
|
this.print(node.key, node);
|
|
}
|
|
this.print(node.typeAnnotation, node);
|
|
if (node.value) {
|
|
this.space();
|
|
this.token("=");
|
|
this.space();
|
|
this.print(node.value, node);
|
|
}
|
|
this.semicolon();
|
|
}
|
|
|
|
export function ClassMethod(node: Object) {
|
|
this.printJoin(node.decorators, node);
|
|
|
|
if (node.static) {
|
|
this.word("static");
|
|
this.space();
|
|
}
|
|
|
|
this._method(node);
|
|
}
|