Irina Rapoport

- 活动总数 121
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 29
-
已编辑于 How do I search through all available subfields and/or methods?
已回答Hi, I am debugging a somewhat convoluted Java program with lots of large POJOS with complex dependencies between them. I find myself doing a lot of a.getB().getC().getD().getE().getF(). I need to ... -
已编辑于 Switching tasks with multiple git roots
已回答I have a project which has one module with two directories, each its own git root. I want to switch both git branches when switching tasks, but it appears that IDEA will only preserve one branch fo... -
已编辑于 Porting from IDEA to WebStorm
已回答I have a plugin developed under IDEA and now need to see if I can port to Webstorm. The plugin relies on Javascript and Typescript functionality. I am finding that Webstorm is apparently missing c... -
已编辑于 How do I debug com.intellij.psi.impl.source.tree.CompositeElement.java?
1.IntelliJ is giving me the following assertion error: java.lang.Throwable at com.intellij.openapi.diagnostic.Logger.assertTrue(Logger.java:168) at com.intellij.psi.impl.source.tree.CompositeElem... -
已编辑于 Trying to make EOL significant in my grammar..
已回答Here is my grammar: { tokens=[ eol="regexp:[\n\r]+" eof='<<EOF>>' literal="regexp:[^,\n'\"][^,\n]*" string="regexp:('([^'\\]|\\.)*'|\"([^\"\\]|\\.)*\")" comma=',' ]}root ::= line *... -
创建于 Application.application == null
已回答I am trying to do this under IntelliJ IDEA 2016.3: Application.invokeLater(() -> { JButton component = new JButton(message); component.setPreferredSize(new Dimension(300, 30)); component.addA... -
已编辑于 How many lines of code in IDEA ultimate?
已回答Just for the sake of discussion with my colleagues, I calculated the number of lines of code in Community Edition. If my calculations are correct, it's in the ballpark of 6.5 million lines of Java,... -
创建于 Debugging IntelliJ which is debugging Javascript
I have a language which transpiles to Javascript. To debug it, I do as follows: 1. Fire IntelliJ A (the latest Ultimate EAP, (IU-162.2228.15 EAP 2016.2.5) 2. Select plugin debug configuration and... -
创建于 debugging Kotlin Intellij code
I've been able to set breakpoints at org.jetbrains.io.Responses.kt However, when I hit a breakpoint, it brings me to Responses.class, not Responses.kt. What's missing? Ditto other Kotlin classes I... -
创建于 Grammar-kit: struggling with recoverWhile
已回答I've forked Simple Plugin and edited its grammar a bit, trying to figure out recoverWhile. The source can be found here: https://github.com/OptimisticLock/intellij-sdk-docs/tree/master/code_sample...