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 0000000000000000000000000000000000000000..fa5c39b9455c689bf7a9d01b7f29845abdbe6fee --- /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);