Package org.eclipse.epsilon.eol.debug
Class BreakpointRequest
java.lang.Object
org.eclipse.epsilon.eol.debug.BreakpointRequest
Represents a request to set a breakpoint in a given line.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
BreakpointRequest
public BreakpointRequest(Map<URI, Path> uriToPathMappings, String path, int line, int column, String condition) Constructs a new request.- Parameters:
uriToPathMappings- Mappings from module URIs to filesystem paths. Useful when debugging code that is loaded from a non-file URI.path- Absolute path of the IDE file with the breakpoint.line- 1-based index of the line of the file where the breakpoint has been set.column- 0-based index of the column within the line where the breakpoint has been set.condition- EOL-based condition that must hold in order to stop at the line. Can benullif no condition is to be used.
-
-
Method Details