* Remove whitespace generation and rely on default printing Changes to printing: * Add newline after last empty SwitchCase * Add newlines around block comments if they are non-flow comments or contain newlines * Fix a few more fixtures
19 lines
416 B
JavaScript
19 lines
416 B
JavaScript
export var MyClass = function MyClass() {
|
|
babelHelpers.classCallCheck(this, MyClass);
|
|
};
|
|
Object.defineProperty(MyClass, "property", {
|
|
enumerable: true,
|
|
writable: true,
|
|
value: value
|
|
});
|
|
|
|
var MyClass2 = function MyClass2() {
|
|
babelHelpers.classCallCheck(this, MyClass2);
|
|
};
|
|
|
|
Object.defineProperty(MyClass2, "property", {
|
|
enumerable: true,
|
|
writable: true,
|
|
value: value
|
|
});
|
|
export { MyClass2 as default }; |