org.mozilla.javascript.debug
public interface DebuggableScript
| Method Summary | |
|---|---|
| DebuggableScript | getFunction(int index) |
| int | getFunctionCount() |
| String | getFunctionName()
Get name of the function described by this script.
|
| int[] | getLineNumbers()
Get array containing the line numbers that
that can be passed to DebugFrame.onLineChange() |
| int | getParamAndVarCount()
Get number of declared parameters and local variables.
|
| int | getParamCount()
Get number of declared parameters in function.
|
| String | getParamOrVarName(int index)
Get name of a declared parameter or local variable.
|
| DebuggableScript | getParent() |
| String | getSourceName()
Get the name of the source (usually filename or URL)
of the script. |
| boolean | isFunction()
Returns true if this is a function, false if it is a script. |
| boolean | isGeneratedScript()
Returns true if this script or function were runtime-generated
from JavaScript using eval function or Function
or Script constructors. |
| boolean | isTopLevel() |
DebugFrame.onLineChange().
Note that line order in the resulting array is arbitrarySee Also: getParamCount DebuggableScript
See Also: getParamAndVarCount DebuggableScript