Skip to content

Commit e9bed76

Browse files
committed
Remove --experimentalAsyncFunctions from tests
1 parent 92f1b48 commit e9bed76

File tree

51 files changed

+0
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+0
-51
lines changed

tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction10_es6.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43

54
var foo = async foo(): Promise<void> => {
65
// Legal to use 'await' in a type context.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43

54
var foo = async (): Promise<void> => {
65
};
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43
var f = (await) => {
54
}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43
function f(await = await) {
54
}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43
var await = () => {
54
}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43

54
var foo = async (await): Promise<void> => {
65
}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43

54
var foo = async (a = await): Promise<void> => {
65
}

tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction7_es6.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43

54
var bar = async (): Promise<void> => {
65
// 'await' here is an identifier, and not an await expression.

tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction8_es6.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43

54
var foo = async (): Promise<void> => {
65
var v = { [await]: foo }
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// @target: ES6
22
// @noEmitHelpers: true
3-
// @experimentalAsyncFunctions: true
43
var foo = async (a = await => await): Promise<void> => {
54
}

0 commit comments

Comments
 (0)