summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/built-ins/Function/prototype/toString/proxy.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/built-ins/Function/prototype/toString/proxy.js b/test/built-ins/Function/prototype/toString/proxy.js
new file mode 100644
index 000000000..fa5c39b94
--- /dev/null
+++ b/test/built-ins/Function/prototype/toString/proxy.js
@@ -0,0 +1,17 @@
+// 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 a proxied function
+info: |
+ Function.prototype.toString accepts any callable, including proxied
+ functions, and produces a NativeFunction
+includes: [nativeFunctionMatcher.js]
+---*/
+
+const f = new Proxy(function(){}, {});
+assertNativeFunction(f);
+
+const g = new Proxy(f, { apply() {} });
+assertNativeFunction(g);