This repository was archived by the owner on May 6, 2020. It is now read-only.
This repository was archived by the owner on May 6, 2020. It is now read-only.
Functions that have a .splice method log like arrays #97
Open
Description
SDK/Debugger version:
Eclipse version:
Google Chrome/V8 Embedder + version:
[For WebKit (WIP) protocol] Backend version:
OS + version:
What steps will reproduce the problem?
var f = function() {};
f.splice = function() {};
console.log(f);
console.dir(f);
console.info(f);
console.warn(f);
console.error(f);
What is the expected result?
f should log as function() {}
What happens instead?
f logs as []
Original issue reported on code.google.com by [email protected]
on 8 Mar 2014 at 5:41