AS3 Boyan

- Total activity 34
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
Created IDEA 14 JPS API CHANGES: org.jetbrains.jps.model.serialization.JpsModelSerializerExtension is missing
I am trying to migrate from 13.1.6 to 14 and got following compilation issue, it misses some classes://import org.jetbrains.jps.model.serialization.JpsModelSerializerExtension;//import org.jetbrain... -
Created Create a library with specific kind
How to create library like <library.type implementation="com.intellij.plugins.haxe.ide.library.HaxeLibraryType"/>?LibraryTable libraryTable = ProjectLibraryTable.getInstance(myModule.getProject(... -
Created Library(path/url) doesn't get added to External Libraries
ApplicationManager.getApplication().runWriteAction(new Runnable() { @Override public void run() { ModifiableRootModel rootModel = ModuleRootManager.getInstance(module).getModifiabl... -
Created on Paste code - suggest imports(custom lang implementation)
on Paste code - suggest imports(custom lang implementation)I was searching for it in code and descriptor, PasteProvider, CopyPasteReferenceProcessor,CopyPastePostProcessor, but still can't figure o... -
Created Custom language: Complete statement(Ctrl-Shift-Enter)
Hello,I was searching info how to implement this feature, and the best I been able to find is com.intellij.codeInsight.editorActions.smartEnter(for example MissingClassBodyFixer) I guess that it co... -
Created IntelliJ IDEA Ultimate 13.1.5 [SOLVED by including netty..alpha]
Hello,I am Haxe plugin for IDEA maintainer.Recently updated from 13.1.4 to 13.1.5 and IntelliJ IDEA fails to run each unit testtestVarDeclaration:log4j:WARN No appenders could be found for logger (... -
Created Rearranger usage example
Rearranger usage exampleI added <lang.rearranger language="Haxe" implementationClass="com.intellij.plugins.haxe.ide.rearranger.HaxeRearrangerModel" /> to plugin descriptorI made a class which imple... -
Created PSIFile.findElementAt(offset) returns HaxeFile(which extends PsiFileBase) instead of PsiElement instance
Hi,I am maintaining Haxe plugin and I attempting to implement Refactoring->Pull up members... functionalityI took implementation fromhttps://github.com/JetBrains/intellij-community/blob/master/java...