* 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
13 lines
347 B
JavaScript
13 lines
347 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var foo = exports.foo = function foo(gen) {
|
|
var ctx = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
};
|
|
|
|
var bar = exports.bar = function bar(gen) {
|
|
var ctx = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
}; |