summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-method-class-statement.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-method-class-statement.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-method-class-statement.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-method-class-statement.js b/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-method-class-statement.js
new file mode 100644
index 0000000000..175b55c1ab
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/toString/async-generator-method-class-statement.js
@@ -0,0 +1,24 @@
+// 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 method
+features: [async-iteration]
+includes: [nativeFunctionMatcher.js]
+---*/
+
+let x = "h";
+class F { /* before */async /* a */ * /* b */ f /* c */ ( /* d */ ) /* e */ { /* f */ }/* after */ }
+class G { /* before */async /* a */ * /* b */ [ /* c */ "g" /* d */ ] /* e */ ( /* f */ ) /* g */ { /* h */ }/* after */ }
+class H { /* before */async /* a */ * /* b */ [ /* c */ x /* d */ ] /* e */ ( /* f */ ) /* g */ { /* h */ }/* after */ }
+
+let f = F.prototype.f;
+let g = G.prototype.g;
+let h = H.prototype.h;
+
+assertToStringOrNativeFunction(f, "async /* a */ * /* b */ f /* c */ ( /* d */ ) /* e */ { /* f */ }");
+assertToStringOrNativeFunction(g, "async /* a */ * /* b */ [ /* c */ \"g\" /* d */ ] /* e */ ( /* f */ ) /* g */ { /* h */ }");
+assertToStringOrNativeFunction(h, "async /* a */ * /* b */ [ /* c */ x /* d */ ] /* e */ ( /* f */ ) /* g */ { /* h */ }");
+
+reportCompare(0, 0);