Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

13 lines
193 B
JavaScript

// ExportNamedDeclaration
var {
b
} = asdf2,
c = babelHelpers.objectWithoutProperties(asdf2, ["b"]); // Skip
export { b, c };
export var {
bb,
cc
} = ads;
export var [dd, ee] = ads;