f(function() { /* do something */ });
f(function() {
/*do something*/
});
Is there accomplish this with a code change?
Are you aware of the pretty print feature?It may help in this case, because it will probably make the anonymous function span over multiple lines.The other option is to add the "debugger;" statement (either in the actual source code, or in edit mode within the Developer Tools on the fly).f(function() { debugger; /* do something */ });