summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/toString/function-declaration.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/toString/function-declaration.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/toString/function-declaration.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/toString/function-declaration.js b/js/src/tests/test262/built-ins/Function/prototype/toString/function-declaration.js
new file mode 100644
index 0000000000..f973e6659b
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/toString/function-declaration.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-function-definitions-runtime-semantics-instantiatefunctionobject
+description: Function.prototype.toString on a function declaration
+includes: [nativeFunctionMatcher.js]
+---*/
+
+/* before */function /* a */ f /* b */ ( /* c */ x /* d */ , /* e */ y /* f */ ) /* g */ { /* h */ ; /* i */ ; /* j */ }/* after */
+
+assertToStringOrNativeFunction(f, "function /* a */ f /* b */ ( /* c */ x /* d */ , /* e */ y /* f */ ) /* g */ { /* h */ ; /* i */ ; /* j */ }");
+
+reportCompare(0, 0);