summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/toString/symbol-named-builtins.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/toString/symbol-named-builtins.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/toString/symbol-named-builtins.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/toString/symbol-named-builtins.js b/js/src/tests/test262/built-ins/Function/prototype/toString/symbol-named-builtins.js
new file mode 100644
index 0000000000..f9c94757b5
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/toString/symbol-named-builtins.js
@@ -0,0 +1,13 @@
+// Copyright (C) 2018 Michael Ficarra. 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 symbol-named built-ins
+includes: [nativeFunctionMatcher.js]
+---*/
+
+assertNativeFunction(RegExp.prototype[Symbol.match]);
+assertNativeFunction(Object.getOwnPropertyDescriptor(RegExp, Symbol.species).get);
+
+reportCompare(0, 0);