1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-30 11:43:33 +02:00

Workaround submitted for Bug 54040 - [Scalability] UI Responsiveness very sluggish when editing large source files

Parser.translationUnit() rethrows OutOfMemoryError after shielding it from the parser.failParse()/errorHandling().
This commit is contained in:
John Camelon 2004-08-16 20:02:31 +00:00
parent 219b499fc9
commit 9f17b51147

View file

@ -220,6 +220,7 @@ public abstract class Parser extends ExpressionParser implements IParser
catch( OutOfMemoryError oome )
{
logThrowable( "translationUnit", oome ); //$NON-NLS-1$
throw oome;
}
catch( Exception e )
{