Search code examples
javaintellij-ideajrebelintellij-13

Where does IntelliJ put .class files when it compiles during typing


Is IntelliJ compiling all the time since it tells me with red squiggly lines when there is an error? (in addition to the autocomplete features) Or is it doing some sort of psuedo compiling?

If it is doing legit compiling, where does it put these compiled classes? I'de like to point my JRebel to that directory instead of the individual module target folders.


Solution

  • Meo is right, from what I learned when I developed plugins for custom languages, IntelliJ does not compile anything until you explicitly make your project. While you are typing, its lexer/parser detects any invalid token or code construct. In the meantime, it maintains an index of every class and method in your project and its dependencies, along with their signature, etc.

    After you stop typing, you'll see a little colored eye in the top part of the right gutter. It indicates that the IDE is running "annotators" and "code inspections". They are able to tell whether or not classes, methods and variable are valid based on the current index and the current state of your file (imports, declarations, etc.). The same goes for unused variables, invalid parameters in method calls, etc.

    Pros:

    • annotators work directly on what they call a PSI tree, which is basically an enhanced AST representing your current file
    • it may be faster that compiling every time (it uses an index and does not need to recompile every dependent class)
    • annotators can detect things javac don't care about, such as potential bugs (e.g. using = instead of == in a while condition)

    Cons:

    • that's a loooot of work, basically they need to rewrite the logic to find every error that javac can produce (which is why you can find many issues on their bugtracker labelled "good code is red" or "bad code is green", meaning there is a difference between what they detect and what the compiler would output)

    TL;DR: it does not produce any .class until you make your project, everything is done "by hand"