* 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
11 lines
338 B
JavaScript
11 lines
338 B
JavaScript
var Ref = function Ref() {
|
|
var ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Ref;
|
|
babelHelpers.classCallCheck(this, Ref);
|
|
this.ref = ref;
|
|
};
|
|
|
|
var X = function X() {
|
|
var x = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : foo;
|
|
babelHelpers.classCallCheck(this, X);
|
|
this.x = x;
|
|
}; |