Class representing one stack frame.
new Frame( context, name, alias, path )
Parameters | context | string | | Context object, empty in case of global functions
or if the browser doesn't provide this information.
| name | string | | Function name, empty in case of anonymous functions.
| alias | string | | Alias of the function if available. For example the
function name will be 'c' and the alias will be 'b' if the function is
defined as a.b = function c() {}; .
| path | string | | File path or URL including line number and optionally
column number separated by colons.
|
|
---|