Bastien Jansen
- Total activity 107
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 35
-
Created Contents of JAR VirtualFile not refreshed
Hello, For the Ceylon plugin, I ship a few archives that contain the source code for various parts of the Ceylon language. For example, references to Ceylon classes might resolve to a file in one o... -
Created Discard files in external builder
Hi, I'm writing an external builder for Ceylon. The ceylon compiler is built on top of javac, so it's able to compile both *.java and *.ceylon files in the same project. Since Java files can refere... -
Edited Plugin initialization
Hi, I would like to be able to register my own classloader as soon as my plugin is loaded. I'm currently doing it in an ApplicationComponent, but it looks like it is invoked "too late" in previous ... -
Created Compile code in CompileTask?
AnsweredHi, I know CompileTask is supposed to be used to run things before and after the actual compilation phase, but we'd like to reuse the Ceylon analyzer, which is kind of slow to be initialized, to co... -
Created TreeStructureProvider to wrap folders
Hi,I'd like to wrap specific folders in the project view in custom nodes. I'm using a TreeStructureProvider [1] and everything works fine, but I'd like those custom nodes to "represent" their child... -
Created Questions about structure view
Hi,I implemented a structure view in my custom language plugin, but I have two questions related to this:- my StructureViewModel implements StructureViewModel.ExpandInfoProvider to automatically co... -
Created Difference between Facet and FrameworkType?
Hi,I'm wondering what's the difference between facet and FrameworkType, both of them seem to add support for a new language/framework + downloading things + configuring things...I'm a little confus... -
Created File accessed outside allowed roots
Hi,I'm running into a problem in my JUnit tests (those which use testdata). They work fine on OSX and Linux (Travis), but on Windows I keep getting this error when I try to open a testdata file:jav... -
Created Highlight all usages
Hello,I have a problem with my custom language, I'm trying to highlight usages of the element under the caret, but not all usages are highlighted. In the following code,String foo;fo<caret>o = "bar... -
Created Running a background task from an annotator
Hi everyone,I have a proble with an annotator which is used to type check the current file. The first time the annotator is used, it retrieves a global type checker which can then be reused for lat...