Spoofax/eclipse crash, eclipse isn't able to start
With the following .sdf file, eclipse/spoofax throws an error about a stackoverflow:
http://pastebin.com/TjxqU7Y4Error messages and crashes occur after opening a .mjv (minijava) file. The errors seem to occur because of the * in the rule on line 9 and 10 (a typo to have it on both lines), but I think it shouldn’t crash the editor?
After the crash I couldn’t get eclipse to start any more, this is the error log:
http://paste.pocoo.org/show/482918/After a lot of searching I “fixed” the problem by using a fresh copy of eclipse and reinstalling Spoofax/IMP, importing the old project without the attached file and then rebuilding the project.
Submitted on 27 September 2011 at 09:43
Issue Log
Normally Eclipse catches any
StackOverflowError
. If it doesn’t do that at startup, that’s really an Eclipse problem. Some kind of workaround might be possible, but won’t be trivial since you can’t catchStackOverflowErrors
using a normal try/catch. Another workaround might be to somehow detect that Eclipse is still starting and then defer parsing. Again tricky. Although it’s really an upstream issue, I’ll leave this one open because of the impact it has…Note that a different workaround for users is to move the offending project (or
include
directory in the project) to a different location when starting Eclipse.
This does not happen any longer in newer Eclipse versions. The erroneous fragment causes a
StackOverflowError
, which is caught by Eclipse. Eclipse recommends to restart itself, but you should not follow this recommendation. First close the editor, then restart manually. You can even fix the grammar and build the project, before you restart.
Log in to post comments