I recently ran into a long script error in IE, but not with other browsers. In the study, I later learned that IE defines a long-term script as one that executes more than 5,000,000 statements, while all other browsers are based on runtime. Considering all the profilers that I could find, such as Firebug, they give a lot of information about memory usage, runtime, number of function calls, but nothing about the number of statements executed.
Does anyone know of a profiler that can help me determine the number of statements to execute (ideally grouped by function call)?
source
share