summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-declaration.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-declaration.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-declaration.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-declaration.js b/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-declaration.js
new file mode 100644
index 0000000000..b58f45252f
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-declaration.js
@@ -0,0 +1,15 @@
+// Copyright 2017 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-function.prototype.tostring
+description: Function.prototype.toString on an async generator declaration
+features: [async-iteration]
+includes: [nativeFunctionMatcher.js]
+---*/
+
+/* before */async /* a */ function /* b */ * /* c */ f /* d */ ( /* e */ x /* f */ , /* g */ y /* h */ ) /* i */ { /* j */ ; /* k */ ; /* l */ }/* after */
+
+assertToStringOrNativeFunction(f, "async /* a */ function /* b */ * /* c */ f /* d */ ( /* e */ x /* f */ , /* g */ y /* h */ ) /* i */ { /* j */ ; /* k */ ; /* l */ }");
+
+reportCompare(0, 0);