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:
parent
219b499fc9
commit
9f17b51147
1 changed files with 1 additions and 0 deletions
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue