Hi, please describe in more details what you're trying to achieve. There is a DebuggerManager class where you can add DebugProcessListener and react on various debugger events.
SuspendContext (which is passed to DebugProcessListener.paused) has getFrameProxy() method that returns information about current stack frame. Is it enough?
Hi, please describe in more details what you're trying to achieve.
There is a DebuggerManager class where you can add DebugProcessListener and react on various debugger events.
Example, stepInto etc, I need give information about line where is breakpoint, type object in this line.
SuspendContext (which is passed to DebugProcessListener.paused) has getFrameProxy() method that returns information about current stack frame.
Is it enough?
I need, if user do Step Into or run to cursor, call my method. Thank you for information StackFrame, i use it after your word.