Bastien Jansen

Results 227 comments of Bastien Jansen

I did a little debug on this, and in the following function: ``` ceylon function phasedUnit(PsiElement element) { if (is CeylonFile file = element.containingFile) { return file.waitForUpToDatePhasedUnit(3, TimeUnit.seconds); } return...

I can hide them, but then they won't be visible from Java files either. I think they might be useful when we try to implement a Ceylon interface in Java....

If we hide them, it means they're not in the index, which means the model loader won't be available to find them, which means `List$impl` won't be found, which means...

> for sure we don't do this anywhere right now Just found a place [where we do this](https://github.com/ceylon/ceylon-ide-intellij/blob/85b876092b99477eb26355c202074ea34403629b/plugin-ceylon-code/src/org/intellij/plugins/ceylon/ide/ceylonCode/psi/CeylonFile.java#L177-L181).

Moving to 1.3.5 because it's more an inconvenience than a critical bug.

I _can_ do the scenario you described. For example in `AbstractIntention`, which is large enough to produce model updates that last 1-2s, I added the following code: ``` value h...

One thing that is not possible is calling intentions when the editor is reparsing the files and recomputing all the annotations (just after the model update), i.e. the short period...

> You should probably test with a full model update, ensure you're testing during a model update on the right project by looking in the status bar. Well, during a...