Newlines in fixtures (#6044)

* write newlines for fixtures

* rerun fixtures
This commit is contained in:
Henry Zhu
2017-08-02 15:35:29 -04:00
committed by GitHub
parent 829c75a866
commit 0f823beeb1
547 changed files with 538 additions and 579 deletions

View File

@@ -10,4 +10,4 @@ let gen = (() => {
};
})();
function _skipFirstGeneratorNext(fn) { return function () { var it = fn.apply(this, arguments); it.next(); return it; }; }
function _skipFirstGeneratorNext(fn) { return function () { var it = fn.apply(this, arguments); it.next(); return it; }; }

View File

@@ -1,4 +1,4 @@
function* foo() {
let a = yield;
return yield;
}
}

View File

@@ -4,4 +4,4 @@ _skipFirstGeneratorNext(function* () {
let _functionSent = yield;
_functionSent = yield _functionSent;
})();
})();