Project
IntelliJ IDEA
Priority
Normal
Type
Bug
Fix versions
No Fix versions
State
Duplicate
Assignee
Alexander Doroshko
Subsystem
Flash/Flex
Affected versions
No Affected versions
Fixed in build
No Fixed in build
  • Created by   Ilya N. Mikhaylov
    2 years ago (28 Aug 2009 22:13)
  • Updated by   Alexander Doroshko
    2 years ago (18 May 2010 19:58)
  • Jira: IDEA-24442
    (history, comments)
 
IDEA-24442 cross(X) breakpoint during debugging flex modules
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
i'm using osgi and have flex parts per separate module and when start debugging at first ut waits to long for loading each flex module in debug mode and at second i have "X"(cross) breakpoint in my flex modules (in main module it works)...

Environment: spring dm, maven, flex (in one jar java and flex module)
Comments (59)
 
History
 
Linked Issues (?)
 
Alexander Doroshko
  Alexander Doroshko
08 Sep 2009 18:23
2 years ago
Can you please do the following:
  • remove file *<idea.system.path>/log.log.xml*. (*idea.system.path property* is set in the file <IDEA installation>/bin/idea.properties
  • edit file <IDEA installation>/bin/log.xml and add following category there:
<log4j:configuration>
  <category name="com.intellij.lang.javascript.flex.debug">
    <priority value="DEBUG"/>
  </category>
...

  • launch IDEA, set only one breakpoint (that will become (x)), launch Flex debug process. Make sure that breakpoint became (x)
After that log.xml will contain the reason of unresolved breakpoint. Please attach it to the issue.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 20:31
2 years ago
To see all currently loaded files, type 'info files'.
Attempting to resolve breakpoint 2, expression "ModulesManager.as:23":
There is no executable code on the specified line.
Alexander Doroshko
  Alexander Doroshko
08 Sep 2009 20:37
2 years ago
Is it possible to set breakpoint to any other line of ModulesManager.as file?
It seems that for some reason source of this class does not match runtime code.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 20:46
2 years ago
i see this
794 C:\dev\projects\mmp-core-4-8-0\modules\mmp-core\mobile-crm\net.velti.crm.flex\src\main\flex\flex\ModulesManager.as, ModulesManager.as
it points to the file where my source located
Alexander Doroshko
  Alexander Doroshko
08 Sep 2009 20:54
2 years ago
it points to the file where my source located


Yes, everything seems to go correct except unexpected response of Flex Debugger (fdb tool) that "There is no executable code on the specified line".
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 20:56
2 years ago
but in eclipse the same code had been allowed to debug
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 21:03
2 years ago
i need solution for this problem asap
Alexander Doroshko
  Alexander Doroshko
08 Sep 2009 21:12
2 years ago
Are first 10 lines not breakpointable too?
Do breakpoints work for neighbor classes?
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 21:15
2 years ago
the first ten lines also not breakpointable
and breakpoint does not work in any place except main module(flex application)
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 21:16
2 years ago
see 2.gif
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
08 Sep 2009 21:25
2 years ago
my debug setting (just in case) so each idea module == flex module and debugable only main module in which flex app lies
Alexander Doroshko
  Alexander Doroshko
09 Sep 2009 16:03
2 years ago
Was trying to reproduce the issue but had no success.
  • How do you compile your project? I guess it's flexmojos. Maybe pom.xml and compiler output (mvn -X compile) may give us some hints.
  • What is sdk version set for Flex facet(s)? It's probably the same as used for compilation (3.3.0 as I see in logs). Does changing SDK that compiles project and/or SDK that is set for Flex facets (IDEA takes fdb.exe from facet settings) makes any difference?
  • Is the issue reproduced if launch your Flex application not via url but just as an swf file on local file system?

Is it possible to create some minimal project in which the issue is reproduced? I suppose it's a project with 2 modules: Flex application and Flex module with 1 class in each module.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:44
2 years ago
provided
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:50
2 years ago
<flex.version>3.3.0.4852</flex.version>
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:52
2 years ago
<flex.player>10</flex.player>
<flex.debug>true</flex.debug>
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:53
2 years ago
actually i'm not compiling sources with idea
i use maven for that
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:56
2 years ago
see facet.gif
i'm using intellij idea for debug and edit (build with maven only)
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:57
2 years ago
can sdk setting i use at the facet impact?????
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 18:59
2 years ago
i can not run it on the local file system because it is no use... the flex app depends on osgi and it in turns require tomcat and main app it depends on... sorry
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 19:00
2 years ago
not possible to create minimal project because it is require time which I haven't
Alexander Doroshko
  Alexander Doroshko
09 Sep 2009 19:06
2 years ago
can sdk setting i use at the facet impact?

Yes, it can.
IDEA 8.1.3 takes fdb.exe from that SDK.
As I see you have Flex SDK 3.0.0. Probably fdb tool of that old version has some bugs.
Please try to configure Flex SDK 3.3.0 for all facets
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
09 Sep 2009 22:53
2 years ago
i have replaced with playerglobal 10 it did not help... may be I should restart idea? do not know already...
hvae you tested it with player 10... because it worked with 9 but with 10 i still can not debug....
Alexander Doroshko
  Alexander Doroshko
11 Sep 2009 18:05
2 years ago
It's rather strange that your application compiled for target player 9 is being debugged properly while for player 10 - not. What browser and what Flash Player plugin version is used when IDEA starts debugging? Maybe changing browser or updating Flash player plugin makes any difference...

And did you try to change facet SDK to version 3.3.0.4852? In IDEA debug console you should see:
Adobe fdb (Flash Player Debugger) [build 4852]
Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
Attempting to launch and connect to Player using URL
...
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
11 Sep 2009 18:14
2 years ago
i'm using firefox.... but also i have tried to use ie... when it worked with 9 it was compiled under 9. now it was compiled under 10
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
11 Sep 2009 18:16
2 years ago
i have tried to change facet... and again the same history... main (flex application is debuggable but for others modules i can not set breakpoint)
Alexander Doroshko
  Alexander Doroshko
11 Sep 2009 18:33
2 years ago
I mean right click -> About Flash Player XX...
Can it happen that it is of version 9?
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
14 Sep 2009 10:23
2 years ago
yes in version 9 this is as well... i even thought that is was due to i have installed version 9
Maxim Mossienko
  Maxim Mossienko
14 Sep 2009 15:40
2 years ago
Could you please check that the module with ModuleManager is built with debugger info on (usually this means <debug>true</debug> present in compiler config file) and it is up to date
Maxim Mossienko
  Maxim Mossienko
14 Sep 2009 17:17
2 years ago
Any chance for switching off '-compiler.optimize' option for all modules this might affect debugging.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Sep 2009 20:59
2 years ago
I have checked and for each module debug is true... anyway the same code is debuggable under eclipse
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Sep 2009 21:02
2 years ago
I'm using the foolowing config
<groupId>org.sonatype.flexmojos</groupId>
                <artifactId>flexmojos-maven-plugin</artifactId>
                <configuration>
                    <quick>true</quick>
                    <contextRoot>dashboard-module</contextRoot>
                    <sourceFile>CommunitiesDashboard.mxml</sourceFile>
                    <debug>${flex.debug}</debug>
                    <verifyDigests>${flex.verify.digests}</verifyDigests>
                    <compiledLocales>
            <locale>en_US</locale>
            <locale>fr_FR</locale>
                        <!– locale>ru_RU</locale–>
            </compiledLocales>
                </configuration>
Maxim Mossienko
  Maxim Mossienko
25 Sep 2009 14:19
2 years ago
Any chance to have two files / modules project illustrating the problem (OSGI loading / using the service), we still out of luck reproducing it.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
15 Oct 2009 13:58
2 years ago
i can share my desctop(throught skype for instance to enable you investigate this issue). unfortunately i have not time to prepare you the project
Maxim Mossienko
  Maxim Mossienko
17 Nov 2009 14:46
2 years ago
please, point to OSGI framework used
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
17 Nov 2009 14:57
2 years ago
we are using eclipse equinox with bridge under tomcat
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
17 Nov 2009 14:57
2 years ago
might not be important but we are using also spring dynamic modules
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
17 Nov 2009 14:58
2 years ago
please draw attention equinox with BRIDGE. so tomcat IS NOT A BUNDLE
Alexander Doroshko
  Alexander Doroshko
23 Nov 2009 15:36
2 years ago
Some changes have been done in IDEA Flex debugger. Debugging startup should be faster now.
Can you please try latest EAP from http://www.jetbrains.net/confluence/display/IDEADEV/Maia+EAP
and attach logs acquired in the same way as written in the first comment to this issue (i.e. clean old logs, use 1 breakpoint that becomes (x)).
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Nov 2009 17:43
2 years ago
thank you. we will check it out
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Nov 2009 21:20
2 years ago
I have the following error
Error during dispatching of java.awt.event.InvocationEvent[INVOCATION_DEFAULT,runnable=com.intellij.openapi.roots.ui.configuration.projectRoot.daemon.ProjectStructureDaemonAnalyzer$2@7c448e,notifier=null,catchExceptions=false,when=1258996450416] on sun.awt.windows.WToolkit@1457184: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
 at com.intellij.openapi.roots.ui.configuration.artifacts.LayoutTree.getRootPackagingNode(LayoutTree.java:35)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.a(ArtifactValidationManagerImpl.java:14)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.updateProblems(ArtifactValidationManagerImpl.java:18)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.a(ArtifactsStructureConfigurableContextImpl.java:7)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.access$100(ArtifactsStructureConfigurableContextImpl.java:24)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl$1.problemsChanged(ArtifactsStructureConfigurableContextImpl.java:1)
 at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
 at com.intellij.util.EventDispatcher.dispatch(EventDispatcher.java:87)
 at com.intellij.util.EventDispatcher.access$100(EventDispatcher.java:33)
 at com.intellij.util.EventDispatcher$1.invoke(EventDispatcher.java:64)
 at $Proxy82.problemsChanged(Unknown Source)
 at com.intellij.openapi.roots.ui.configuration.projectRoot.daemon.ProjectStructureDaemonAnalyzer$2.run(ProjectStructureDaemonAnalyzer.java:2)
 at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:267)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
 at java.awt.Dialog$1.run(Dialog.java:1051)
 at java.awt.Dialog$3.run(Dialog.java:1103)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.awt.Dialog.show(Dialog.java:1101)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:162)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:5)
 at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:952)
 at com.intellij.ide.actions.ShowSettingsUtilImpl.editConfigurable(ShowSettingsUtilImpl.java:70)
 at com.intellij.ide.actions.ShowStructureSettingsAction.actionPerformed(ShowStructureSettingsAction.java:1)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:80)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:133)
 at com.intellij.openapi.actionSystem.impl.ActionButton.processMouseEvent(ActionButton.java:134)
 at java.awt.Component.processEvent(Component.java:5981)
 at java.awt.Container.processEvent(Container.java:2041)
 at java.awt.Component.dispatchEventImpl(Component.java:4583)
 at java.awt.Container.dispatchEventImpl(Container.java:2099)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556)
 at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220)
 at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150)
 at java.awt.Container.dispatchEventImpl(Container.java:2085)
 at java.awt.Window.dispatchEventImpl(Window.java:2475)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:212)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
 at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)



java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
 at com.intellij.openapi.roots.ui.configuration.artifacts.LayoutTree.getRootPackagingNode(LayoutTree.java:35)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.a(ArtifactValidationManagerImpl.java:14)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.updateProblems(ArtifactValidationManagerImpl.java:18)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.a(ArtifactsStructureConfigurableContextImpl.java:7)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.access$100(ArtifactsStructureConfigurableContextImpl.java:24)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl$1.problemsChanged(ArtifactsStructureConfigurableContextImpl.java:1)
 at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
 at com.intellij.util.EventDispatcher.dispatch(EventDispatcher.java:87)
 at com.intellij.util.EventDispatcher.access$100(EventDispatcher.java:33)
 at com.intellij.util.EventDispatcher$1.invoke(EventDispatcher.java:64)
 at $Proxy82.problemsChanged(Unknown Source)
 at com.intellij.openapi.roots.ui.configuration.projectRoot.daemon.ProjectStructureDaemonAnalyzer$2.run(ProjectStructureDaemonAnalyzer.java:2)
 at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:267)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
 at java.awt.Dialog$1.run(Dialog.java:1051)
 at java.awt.Dialog$3.run(Dialog.java:1103)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.awt.Dialog.show(Dialog.java:1101)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:162)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:5)
 at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:952)
 at com.intellij.ide.actions.ShowSettingsUtilImpl.editConfigurable(ShowSettingsUtilImpl.java:70)
 at com.intellij.ide.actions.ShowStructureSettingsAction.actionPerformed(ShowStructureSettingsAction.java:1)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:80)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:133)
 at com.intellij.openapi.actionSystem.impl.ActionButton.processMouseEvent(ActionButton.java:134)
 at java.awt.Component.processEvent(Component.java:5981)
 at java.awt.Container.processEvent(Container.java:2041)
 at java.awt.Component.dispatchEventImpl(Component.java:4583)
 at java.awt.Container.dispatchEventImpl(Container.java:2099)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556)
 at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220)
 at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150)
 at java.awt.Container.dispatchEventImpl(Container.java:2085)
 at java.awt.Window.dispatchEventImpl(Window.java:2475)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:212)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
 at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)



java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
 at com.intellij.openapi.roots.ui.configuration.artifacts.LayoutTree.getRootPackagingNode(LayoutTree.java:35)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.a(ArtifactValidationManagerImpl.java:14)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.updateProblems(ArtifactValidationManagerImpl.java:18)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.a(ArtifactsStructureConfigurableContextImpl.java:7)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.access$100(ArtifactsStructureConfigurableContextImpl.java:24)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl$1.problemsChanged(ArtifactsStructureConfigurableContextImpl.java:1)
 at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
 at com.intellij.util.EventDispatcher.dispatch(EventDispatcher.java:87)
 at com.intellij.util.EventDispatcher.access$100(EventDispatcher.java:33)
 at com.intellij.util.EventDispatcher$1.invoke(EventDispatcher.java:64)
 at $Proxy82.problemsChanged(Unknown Source)
 at com.intellij.openapi.roots.ui.configuration.projectRoot.daemon.ProjectStructureDaemonAnalyzer$2.run(ProjectStructureDaemonAnalyzer.java:2)
 at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:267)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
 at java.awt.Dialog$1.run(Dialog.java:1051)
 at java.awt.Dialog$3.run(Dialog.java:1103)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.awt.Dialog.show(Dialog.java:1101)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:162)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:5)
 at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:952)
 at com.intellij.ide.actions.ShowSettingsUtilImpl.editConfigurable(ShowSettingsUtilImpl.java:70)
 at com.intellij.ide.actions.ShowStructureSettingsAction.actionPerformed(ShowStructureSettingsAction.java:1)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:80)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:133)
 at com.intellij.openapi.actionSystem.impl.ActionButton.processMouseEvent(ActionButton.java:134)
 at java.awt.Component.processEvent(Component.java:5981)
 at java.awt.Container.processEvent(Container.java:2041)
 at java.awt.Component.dispatchEventImpl(Component.java:4583)
 at java.awt.Container.dispatchEventImpl(Container.java:2099)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556)
 at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220)
 at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150)
 at java.awt.Container.dispatchEventImpl(Container.java:2085)
 at java.awt.Window.dispatchEventImpl(Window.java:2475)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:212)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
 at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)



java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
 at com.intellij.openapi.roots.ui.configuration.artifacts.LayoutTree.getRootPackagingNode(LayoutTree.java:35)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.a(ArtifactValidationManagerImpl.java:14)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.updateProblems(ArtifactValidationManagerImpl.java:18)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.a(ArtifactsStructureConfigurableContextImpl.java:7)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.access$100(ArtifactsStructureConfigurableContextImpl.java:24)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl$1.problemsChanged(ArtifactsStructureConfigurableContextImpl.java:1)
 at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
 at com.intellij.util.EventDispatcher.dispatch(EventDispatcher.java:87)
 at com.intellij.util.EventDispatcher.access$100(EventDispatcher.java:33)
 at com.intellij.util.EventDispatcher$1.invoke(EventDispatcher.java:64)
 at $Proxy82.problemsChanged(Unknown Source)
 at com.intellij.openapi.roots.ui.configuration.projectRoot.daemon.ProjectStructureDaemonAnalyzer$2.run(ProjectStructureDaemonAnalyzer.java:2)
 at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:267)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
 at java.awt.Dialog$1.run(Dialog.java:1051)
 at java.awt.Dialog$3.run(Dialog.java:1103)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.awt.Dialog.show(Dialog.java:1101)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:162)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:5)
 at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:952)
 at com.intellij.ide.actions.ShowSettingsUtilImpl.editConfigurable(ShowSettingsUtilImpl.java:70)
 at com.intellij.ide.actions.ShowStructureSettingsAction.actionPerformed(ShowStructureSettingsAction.java:1)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:80)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:133)
 at com.intellij.openapi.actionSystem.impl.ActionButton.processMouseEvent(ActionButton.java:134)
 at java.awt.Component.processEvent(Component.java:5981)
 at java.awt.Container.processEvent(Container.java:2041)
 at java.awt.Component.dispatchEventImpl(Component.java:4583)
 at java.awt.Container.dispatchEventImpl(Container.java:2099)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556)
 at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220)
 at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150)
 at java.awt.Container.dispatchEventImpl(Container.java:2085)
 at java.awt.Window.dispatchEventImpl(Window.java:2475)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:212)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
 at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)



java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
java.lang.ClassCastException: com.intellij.ui.treeStructure.NullNode cannot be cast to com.intellij.openapi.roots.ui.configuration.artifacts.nodes.PackagingElementNode
 at com.intellij.openapi.roots.ui.configuration.artifacts.LayoutTree.getRootPackagingNode(LayoutTree.java:35)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.a(ArtifactValidationManagerImpl.java:14)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactValidationManagerImpl.updateProblems(ArtifactValidationManagerImpl.java:18)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.a(ArtifactsStructureConfigurableContextImpl.java:7)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl.access$100(ArtifactsStructureConfigurableContextImpl.java:24)
 at com.intellij.openapi.roots.ui.configuration.artifacts.ArtifactsStructureConfigurableContextImpl$1.problemsChanged(ArtifactsStructureConfigurableContextImpl.java:1)
 at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
 at com.intellij.util.EventDispatcher.dispatch(EventDispatcher.java:87)
 at com.intellij.util.EventDispatcher.access$100(EventDispatcher.java:33)
 at com.intellij.util.EventDispatcher$1.invoke(EventDispatcher.java:64)
 at $Proxy82.problemsChanged(Unknown Source)
 at com.intellij.openapi.roots.ui.configuration.projectRoot.daemon.ProjectStructureDaemonAnalyzer$2.run(ProjectStructureDaemonAnalyzer.java:2)
 at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:267)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
 at java.awt.Dialog$1.run(Dialog.java:1051)
 at java.awt.Dialog$3.run(Dialog.java:1103)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.awt.Dialog.show(Dialog.java:1101)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:162)
 at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:5)
 at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:952)
 at com.intellij.ide.actions.ShowSettingsUtilImpl.editConfigurable(ShowSettingsUtilImpl.java:70)
 at com.intellij.ide.actions.ShowStructureSettingsAction.actionPerformed(ShowStructureSettingsAction.java:1)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:80)
 at com.intellij.openapi.actionSystem.impl.ActionButton.a(ActionButton.java:133)
 at com.intellij.openapi.actionSystem.impl.ActionButton.processMouseEvent(ActionButton.java:134)
 at java.awt.Component.processEvent(Component.java:5981)
 at java.awt.Container.processEvent(Container.java:2041)
 at java.awt.Component.dispatchEventImpl(Component.java:4583)
 at java.awt.Container.dispatchEventImpl(Container.java:2099)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556)
 at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220)
 at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150)
 at java.awt.Container.dispatchEventImpl(Container.java:2085)
 at java.awt.Window.dispatchEventImpl(Window.java:2475)
 at java.awt.Component.dispatchEvent(Component.java:4413)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
 at com.intellij.ide.IdeEventQueue.f(IdeEventQueue.java:260)
 at com.intellij.ide.IdeEventQueue.b(IdeEventQueue.java:212)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:141)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
 at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Nov 2009 21:26
2 years ago
and also after exporting idea 8 project i have flex sdk resolving problems see #
  1. screenshot0.png
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Nov 2009 21:28
2 years ago
some modules already enable to dubug but modules which include any other flex modules still can not... i will atach logs later on
Alexander Doroshko
  Alexander Doroshko
23 Nov 2009 22:00
2 years ago
As for exception: it will be fixed in the next EAP.
As for sdk resolving problems: I'm afraid you need to open each Flex facet settings dialog and make sure that there's no 'exclaimer' mark in Flex SDK combobox.
By the way in IDEA 9 you may skip all manual configuration (including Flex SDK) when working with Flexmojos projects. You may import the whole project as described here: http://blogs.jetbrains.com/idea/2009/09/flexmojos-inmaia/
The most reliable way is that described at the end of that blog post, i.e. with <configurationReport> tag and successful 'mvn compile' before importing.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
23 Nov 2009 22:08
2 years ago
ok, i will try. thank you
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
24 Nov 2009 14:20
2 years ago
i have configured flex-mojos but flex still not can be resolved... see screenshot1.png, screenshot2.png and screenshot3.png
Alexander Doroshko
  Alexander Doroshko
24 Nov 2009 15:01
2 years ago
Please try File -> Invalidate Caches and restart IDEA.
If the code remains red then please open Dependencies tab of module mcrm-main-flex. There should be a lot of libraries called Maven: ...'. Among them should be 'Maven: com.adobe.flex.framework:framework:swc:3.3.0.4852'. Press Edit button for this library and make sure that framework-3.3.0.4852.swc file is added as Classes and it is black (Sources and Docs entries are probably red - it doesn't matter). Presence of this file is enough for <mx:Application/> component resolving.

Another way to check that mx.core.Aplication class is loaded - press Ctrl+N and type 'Application'.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
27 Nov 2009 13:48
2 years ago
I have done all steps above but code is still red (see screenshort4.png, screenshort5.png). also we have restructured project to test whether it is possible for debug. i will let you know as soon as i will have time to check.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
11 Dec 2009 22:54
2 years ago
seems to me idea can not resolve system path to jars... do not know why... see screenshot6.png
Error:Error: Cannot access compiler output path.
C:\Documents and Settings\mil\.m2\repository\com\adobe\flex\framework\applicationupdater\3.3.0.4852\applicationupdater-3.3.0.4852.swc
Error:Error:Can not calculate name of output bundle, rename jar or use -properties
Alexander Doroshko
  Alexander Doroshko
14 Dec 2009 17:46
2 years ago
As I see at screenshot6.png these errors are reported not by Flex compiler. What did you do to get them? May be you should open a new issue for that if you suspect IDEA to do something wrong.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
14 Dec 2009 17:59
2 years ago
actually nothing... it seems to me idea can not resolve path with dot like follows(C:\Documents and Settings\mil\.m2- .m2) because it complains that jar does not exist but it is present... i have downloaded latest version of idea at home as well(without importing settings from 8) and the same issue...
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
14 Dec 2009 18:00
2 years ago
i would create separate issue but unfortunately i have no time for that
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
14 Dec 2009 18:08
2 years ago
as I previously said i can share my desctop throgh skype for instance in case it will help you somehow
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
15 Dec 2009 19:59
2 years ago
null
java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.util.concurrent.ExecutionException: java.lang.AssertionError
java.util.concurrent.ExecutionException: java.lang.AssertionError
 at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222)
 at java.util.concurrent.FutureTask.get(FutureTask.java:83)
 at com.intellij.concurrency.PrioritizedFutureTask.done(PrioritizedFutureTask.java:117)
 at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 ... 4 more




java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.util.concurrent.ExecutionException: java.lang.AssertionError
java.util.concurrent.ExecutionException: java.lang.AssertionError
 at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222)
 at java.util.concurrent.FutureTask.get(FutureTask.java:83)
 at com.intellij.concurrency.PrioritizedFutureTask.done(PrioritizedFutureTask.java:117)
 at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 ... 4 more




java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.util.concurrent.ExecutionException: java.lang.AssertionError
java.util.concurrent.ExecutionException: java.lang.AssertionError
 at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222)
 at java.util.concurrent.FutureTask.get(FutureTask.java:83)
 at com.intellij.concurrency.PrioritizedFutureTask.done(PrioritizedFutureTask.java:117)
 at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 ... 4 more




java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.util.concurrent.ExecutionException: java.lang.AssertionError
java.util.concurrent.ExecutionException: java.lang.AssertionError
 at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222)
 at java.util.concurrent.FutureTask.get(FutureTask.java:83)
 at com.intellij.concurrency.PrioritizedFutureTask.done(PrioritizedFutureTask.java:117)
 at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 ... 4 more




java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)



java.util.concurrent.ExecutionException: java.lang.AssertionError
java.util.concurrent.ExecutionException: java.lang.AssertionError
 at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222)
 at java.util.concurrent.FutureTask.get(FutureTask.java:83)
 at com.intellij.concurrency.PrioritizedFutureTask.done(PrioritizedFutureTask.java:117)
 at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 ... 4 more




java.lang.AssertionError
java.lang.AssertionError
 at com.intellij.injected.editor.EditorWindow.create(EditorWindow.java:88)
 at com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil.getInjectedEditorForInjectedFile(InjectedLanguageUtil.java:172)
 at com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler.availableFor(ShowIntentionActionsHandler.java:161)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:135)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.a(IntentionListStep.java:125)
 at com.intellij.codeInsight.intention.impl.IntentionListStep.updateActions(IntentionListStep.java:80)
 at com.intellij.codeInsight.intention.impl.IntentionHintComponent.updateActions(IntentionHintComponent.java:139)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.a(ShowIntentionsPass.java:174)
 at com.intellij.codeInsight.daemon.impl.ShowIntentionsPass.doCollectInformation(ShowIntentionsPass.java:117)
 at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:54)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1$1.run(PassExecutorService.java:328)
 at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:691)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass$1.run(PassExecutorService.java:320)
 at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:222)
 at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:317)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
 at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
 at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
 at java.lang.Thread.run(Thread.java:619)
Alexander Doroshko
  Alexander Doroshko
15 Dec 2009 21:33
2 years ago
Ilya, Jetbrains team really does handle exceptions reported by Blame button. User description about project setup peculiarities and ways to reproduce are very helpful when you Blame IDEA. You may find submitted errors here http://ea.jetbrains.com/ (though this web interface is rather poor at the moment). You may also create a separate Youtrack issue about exception if a dialog with responsible engineer from Jetbrains might be useful. Posting exception as a comment to a Flex debugger problem is not a convenient way of issue tracking.
Ilya N. Mikhaylov
  Ilya N. Mikhaylov
16 Dec 2009 12:28
2 years ago
yes I understand this is unconvinient way... but blame button requires user/password... so it requires several steps to setup somehow and i do not have time for this... better to do blame button to send errors from any idea(even unregistered/trial) as it is done in firefox or windows... in case user want to send report he/she just push the button and report sent to the appropriate destination... no need this security for idea bug reports...
Alexander Doroshko
  Alexander Doroshko
16 Dec 2009 13:37
2 years ago
username/password is optional, anonymous reports are handled in the same way,
user description is welcome in any case.
Graeme
  Graeme
14 Mar 2010 01:26
2 years ago
Not sure if this is relevant but looking at the Screenshot# files, I can tell your SDK isn't configured entirely. See ticket IDEA-51955 for details on how to configure all .swc and src files so they don't show up red. Screenshots are for Flex 3.5 but should be the same. If this doesn't apply to Maven projects, please ignore.
Charles Simpson
  Charles Simpson
18 May 2010 19:42
2 years ago
I have reproduced the problem with breakpoints not being set (red X on breakpoint) outside of Idea, just using Ant and command line FDB. I have submitted a bug to Adobe, https://bugs.adobe.com/jira/browse/SDK-26466. Please vote for this issue.
Alexander Doroshko
  Alexander Doroshko
18 May 2010 19:51
2 years ago
Charles, thank you very much for investigation!
I still had no luck reproducing it myself though tried a lot of times. Sample project is still very much welcome because I'd like to workaround this Adobe's bug in IDEA.