主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Egor Ushakov
活动总数
347
最后的活动
2023年12月06日 08:22
成员加入日期
2014年04月08日 09:02
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
128
活动概览
文章(0)
帖子(0)
评论(219)
按最近的活动排序
最近的活动
投票数
创建于
2014年10月07日 15:54
You need to drag the watches tab itself (where icon with googles located) from the detached window to the containerIt may be easier to restore layout (there is a button for that on the left toolbar...
社区
IntelliJ IDEA Users
How to dock floating Watches window?
5 票
已编辑于
2019年02月19日 11:32
You can use XBreakpointManagerImpl.getAllBreakpoints and then filter by getType() instanceof XLineBreakpointType
社区
IntelliJ IDEA Open API and Plugin Development
Get breakpoints
2 票
创建于
2023年11月27日 13:36
Hi, any methods invocation invalidate everything by calling com.intellij.debugger.jdi.VirtualMachineProxyImpl#clearCaches (and increasing myTimeStamp theres). Usually to overcome this we use com.in...
社区
IntelliJ IDEA Open API and Plugin Development
How to run methods during debugging without invalidating the current stack frame
1 票
创建于
2021年05月04日 09:50
Hi, it seems that JavaValue does not follow the api correctly, please call computePresentation before computeChildren for it to work.
社区
IntelliJ IDEA Open API and Plugin Development
Error when reading debugging variables during a debugging session with a plugin
1 票
已编辑于
2021年03月18日 08:01
To some extent this could be solved by using "catch class filter" on the exception breakpoint with your app package filter like "my.app.*". This way you'll stop only in catch blocks in your code.
社区
IntelliJ IDEA Users
In the debugger, how to ignore exceptions that never pass through my code
1 票
已编辑于
2021年03月01日 16:50
Hi, you can start with XDebuggerManager.getInstance(project).getCurrentSession() it will return an instance of the current XDebugSession. Then com.intellij.xdebugger.XDebugSession#getCurrentStackFr...
社区
IntelliJ IDEA Open API and Plugin Development
Accessing the debug information (variables) while debugging with a plugin (Intellij)
1 票
创建于
2019年06月17日 13:45
Hi, you may need to implement your own com.intellij.debugger.PositionManager to map locations back to the original sources
社区
IntelliJ IDEA Open API and Plugin Development
Breakpoints in custom JVM Languages (C, Fortran)
1 票
创建于
2019年05月20日 14:29
You can try adding a listener com.intellij.xdebugger.XDebugSessionListener with your evaluations in beforeSessionResume and sessionPaused.
社区
IntelliJ IDEA Open API and Plugin Development
How to chain debugger actions and evaluations with com.intellij.xdebugger.XDebugSession?
1 票
创建于
2018年05月29日 16:19
To toggle a line breakpoint you can use XDebuggerUtil.toggleLineBreakpoint
社区
IntelliJ IDEA Open API and Plugin Development
Programmatically start debugger
1 票
已编辑于
2018年05月29日 12:43
To add a breakpoint you can use XBreakpointManager.addLineBreakpoint, to debug a configuration - ExecutionEnvironmentBuilder.create(project, DefaultDebugExecutor.getDebugExecutorInstance(), runConf...
社区
IntelliJ IDEA Open API and Plugin Development
Programmatically start debugger
1 票
下一页
›
最后
»