implements(override) debug event for Java in plugin for Intellij Idea
I need that after event in debugger(Step Into, run to cursor etc) program entered in my method, where i add new features for debugger. How do it?
Please sign in to leave a comment.
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.