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

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

35 lines
508 B
JavaScript

function a() {
var foo = function () {
return bar.apply(undefined, arguments);
};
foo.apply(undefined, arguments);
}
function b() {
var foo = function () {
return bar.apply(undefined, arguments);
};
foo.apply(undefined, arguments);
}
function c() {
var foo = function () {
return bar.apply(undefined, arguments);
};
foo([]);
}
function d(thing) {
var foo = function () {
return bar.apply(undefined, arguments);
};
{
var _args = thing;
foo(thing);
}
}