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

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

8 lines
146 B
JavaScript

function* foo() {
var a = yield wat(),
b = 2;
var c = yield a = b;
yield a, yield b;
yield a = b;
return (yield 1) || (yield 2);
}