Irina Rapoport

- Total activity 121
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 29
-
Edited How do I search through all available subfields and/or methods?
AnsweredHi, 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 ... -
Edited Switching tasks with multiple git roots
AnsweredI 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... -
Edited Porting from IDEA to WebStorm
AnsweredI 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... -
Edited 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... -
Edited Trying to make EOL significant in my grammar..
AnsweredHere is my grammar: { tokens=[ eol="regexp:[\n\r]+" eof='<<EOF>>' literal="regexp:[^,\n'\"][^,\n]*" string="regexp:('([^'\\]|\\.)*'|\"([^\"\\]|\\.)*\")" comma=',' ]}root ::= line *... -
Created Application.application == null
AnsweredI 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... -
Edited How many lines of code in IDEA ultimate?
AnsweredJust 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,... -
Created 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... -
Created 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... -
Created Grammar-kit: struggling with recoverWhile
AnsweredI'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...