blob: b8fb3676806c2445b73de301f5ab718f17338d2c [file] [log] [blame]
Object.defineProperty(this, "x", { get: decodeURI, configurable: true })
try {
String(b = Proxy.createFunction(function() {
return {
get: function(r, z) {
return x[z]
}
}
}(), function() {}))
} catch (e) {};
try {
function x() {}
assertEq(String(b), "function () {}");
} catch (e) { throw (e); }