Add writable descriptor to setToString.

This commit is contained in:
John-David Dalton
2016-08-22 10:56:07 -07:00
parent 8066ad7e65
commit 358ecfd2eb

View File

@@ -6358,7 +6358,8 @@
return defineProperty(func, 'toString', {
'configurable': true,
'enumerable': false,
'value': constant(string)
'value': constant(string),
'writable': true
});
};