Class Dim.SourceInfo
java.lang.Object
org.mozilla.javascript.tools.debugger.Dim.SourceInfo
- Enclosing class:
Dim
Class to store information about a script source.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
breakableLine
(int line) Returns whether the given line number can have a breakpoint set on it.boolean
breakpoint
(int line) Returns whether there is a breakpoint set on the given line.boolean
breakpoint
(int line, boolean value) Sets or clears the breakpoint flag for the given line.functionSource
(int i) Returns the FunctionSource object with the given index.int
Returns the number of FunctionSource objects stored in this object.void
Removes all breakpoints from the script.source()
Returns the source text.url()
Returns the script's origin URL.
-
Method Details
-
source
Returns the source text. -
url
Returns the script's origin URL. -
functionSourcesTop
public int functionSourcesTop()Returns the number of FunctionSource objects stored in this object. -
functionSource
Returns the FunctionSource object with the given index. -
breakableLine
public boolean breakableLine(int line) Returns whether the given line number can have a breakpoint set on it. -
breakpoint
public boolean breakpoint(int line) Returns whether there is a breakpoint set on the given line. -
breakpoint
public boolean breakpoint(int line, boolean value) Sets or clears the breakpoint flag for the given line. -
removeAllBreakpoints
public void removeAllBreakpoints()Removes all breakpoints from the script.
-