From 7d5a5fef369f8054c6bf8d15c8cbbef1973aae01 Mon Sep 17 00:00:00 2001
From: Michael Ficarra <git@michael.ficarra.me>
Date: Wed, 7 Mar 2018 10:05:45 -0800
Subject: [PATCH] add Function.prototype.toString result for callable proxies

---
 .../Function/prototype/toString/proxy.js        | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 test/built-ins/Function/prototype/toString/proxy.js

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 0000000000..fa5c39b945
--- /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);
-- 
GitLab