8000 [Transforms] Down-level transformations for Async Functions by rbuckton · Pull Request #9175 · microsoft/TypeScript · GitHub
[go: up one dir, main page]

Skip to content

[Transforms] Down-level transformations for Async Functions #9175

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Jul 20, 2016
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d506e92
Early support for generators.
rbuckton Feb 29, 2016
88b38f8
Merge branch 'transforms-transformer-module' into transforms-transfor…
rbuckton Mar 2, 2016
aaf3ab7
Merge branch 'transforms-transformer-module' into transforms-transfor…
rbuckton Mar 2, 2016
c267691
Fixed labels
rbuckton Mar 3, 2016
83b4cbb
merge branch 'transforms-fixMoreSourceMaps' into transforms-transform…
rbuckton May 18, 2016
4ae83fa
Fix issues after merge
rbuckton May 18, 2016
e85d3e6
Merge branch 'transforms' into transforms-generators
rbuckton Jun 13, 2016
0948f73
Cleanup, only support generators for async functions, added emit helper.
rbuckton Jun 13, 2016
8190666
Adds progress indicators to the runtests-parallel build task.
rbuckton Jun 9, 2016
3681e3c
Fixed typo
rbuckton Jun 9, 2016
4afb8c4
Fixes an issue with runtests-parallel when global mocha is not instal…
rbuckton Jun 10, 2016
aa4662e
Fixes runtests-parallel not reporting failure for failed tests.
rbuckton Jun 13, 2016
27931d5
Cleanup, fix linter errors, follow hoisted declarations.
rbuckton Jun 13, 2016
ea61f2b
Added tests and fixed related emit issues.
rbuckton Jun 15, 2016
9073572
Merge branch 'transforms' into transforms-generators
rbuckton Jun 15, 2016
5e31b25
Merge branch 'transforms' into transforms-generators
rbuckton Jun 15, 2016 8000
4eb2a82
Merge branch 'transforms' into transforms-generators
rbuckton Jun 15, 2016
278a350
Add support for external helpers module, cleanup, and accept new base…
rbuckton Jun 15, 2016
c11b560
es6 test conformance cleanup
rbuckton Jun 27, 2016
a858db6
Remove extraneous comments.
rbuckton Jun 27, 2016
4a16f65
Removed extranous original parameter.
rbuckton Jun 27, 2016
393ee28
Move 'use strict' directive out of generator for async function.
rbuckton Jun 27, 2016
5b2e11c
Added es5 conformance tests for await in binary.
rbuckton Jun 27, 2016
48a9562
Added es5 conformance tests for async function declarations. Add abil…
rbuckton Jun 27, 2016
0c647c3
Added es5 conformance tests for awaiting a call
rbuckton Jun 27, 2016
203dab4
Added additional es5 conformance tests, better emit for functions ret…
rbuckton Jun 28, 2016
644e4da
Added es5 conformance tests for async arrow functions, add error for …
rbuckton Jun 28, 2016
9e3d6f8
Additional comments per PR feedback.
rbuckton Jun 28, 2016
252cc25
Merge branch 'transforms' into transforms-generators
rbuckton Jul 18, 2016
c832444
Accept baselines plus new linter warnings.
rbuckton Jul 18, 2016
c285767
Updated comment
rbuckton Jul 18, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes runtests-parallel not reporting failure for failed tests.
  • Loading branch information
rbuckton committed Jun 13, 2016
commit aa4662ed5dfaab63746f93dccf78f099e76b254d
5 changes: 2 additions & 3 deletions scripts/mocha-parallel.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ function runTests(taskConfigsFolder, run, options, cb) {
counter--;

if (counter <= 0) {
var failed = 0;
var reporter = new Base(),
stats = reporter.stats,
failures = reporter.failures;
Expand Down Expand Up @@ -224,8 +223,8 @@ function runTests(taskConfigsFolder, run, options, cb) {
reporter.epilogue();
}

if (failed) {
return cb(new Error("Test failures reported: " + failed));
if (stats.failures) {
return cb(new Error("Test failures reported: " + stats.failures));
}
else {
return cb();
Expand Down
0