Updated to include caveats in the comments below from CMS, Tim Down, MooGoo:
The closest thing available to what you're after is calling .toString()
on a function to get the full function text, like this:
function derp() { a(); b(); c(); }
alert(derp.toString()); //"function derp() { a(); b(); c(); }"
You can give it a try here, some caveats to be aware of though:
- The
.toString()
on function is implementation-dependent (Spec here section 15.3.4.2)
- From the spec: An implementation-dependent representation of the function is returned. This representation has the syntax of a FunctionDeclaration. Note in particular that the use and placement of white space, line terminators, and semicolons within the representation string is implementation-dependent.
- Noted differences in Opera Mobile, early Safari, neither displaying source like my example above.
- Firefox returns a compiled function, after optimization, for example:
(function() { x=5; 1+2+3; }).toString()
== function() { x=5; }
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…