summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/toString/method-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/toString/method-object.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/toString/method-object.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/toString/method-object.js b/js/src/tests/test262/built-ins/Function/prototype/toString/method-object.js
new file mode 100644
index 0000000000..d94c3ece27
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/toString/method-object.js
@@ -0,0 +1,14 @@
+// Copyright (C) 2016 Michael Ficarra. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-runtime-semantics-definemethod
+description: Function.prototype.toString on a method (object)
+includes: [nativeFunctionMatcher.js]
+---*/
+
+let f = { /* before */f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */ }.f;
+
+assertToStringOrNativeFunction(f, "f /* a */ ( /* b */ ) /* c */ { /* d */ }");
+
+reportCompare(0, 0);