Chrome seems to report some functions as anonymous when they are not. For instance: ``` function f2() { try {(0)();} catch(e) { alert(e.stack); } } f2(); ``` reports a stack containing only an anonymous function.