summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/toString/private-static-method-class-expression.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/toString/private-static-method-class-expression.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/toString/private-static-method-class-expression.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/toString/private-static-method-class-expression.js b/js/src/tests/test262/built-ins/Function/prototype/toString/private-static-method-class-expression.js
new file mode 100644
index 0000000000..fd863c65ca
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/toString/private-static-method-class-expression.js
@@ -0,0 +1,19 @@
+// Copyright (C) 2019 Kubilay Kahveci (Bloomberg LP). All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: Function.prototype.toString on a static private method
+features: [class-static-methods-private]
+includes: [nativeFunctionMatcher.js]
+---*/
+
+let C = class {
+ /* before */static #f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */
+ static assert(expected) {
+ assertToStringOrNativeFunction(this.#f, expected);
+ }
+};
+
+C.assert("#f /* a */ ( /* b */ ) /* c */ { /* d */ }");
+
+reportCompare(0, 0);