Package com.oracle.truffle.api.debug
Interface Breakpoint.ResolveListener
- Enclosing class:
Breakpoint
public static interface Breakpoint.ResolveListener
This listener is called when a breakpoint is resolved at the target location. The breakpoint
is not resolved till the target source section is loaded. The target resolved location may
differ from the specified breakpoint location.
- Since:
- 0.33
-
Method Summary
Modifier and TypeMethodDescriptionvoid
breakpointResolved
(Breakpoint breakpoint, SourceSection section) Notify about a breakpoint resolved at the specified location.
-
Method Details
-
breakpointResolved
Notify about a breakpoint resolved at the specified location.- Parameters:
breakpoint
- The resolved breakpointsection
- The resolved location- Since:
- 0.33
-