[TIMOB-12735] CodeProcessor: Remove redundant errors and warnings
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2013-02-14T19:11:28.000+0000 |
Affected Version/s | Release 3.0.0 |
Fix Version/s | Release 3.1.0, 2013 Sprint 04 JS, 2013 Sprint 04 |
Components | Code Processor |
Labels | n/a |
Reporter | Bryan Hughes |
Assignee | Praveen Innamuri |
Created | 2013-02-14T18:12:36.000+0000 |
Updated | 2017-03-09T00:35:01.000+0000 |
Description
Normally when an exception is thrown, execution of JavaScript terminates, but because of the code processor's ability to recover from errors, the same error can be reported multiple times
for(var i = 0; i < 10; i++) {
foo();
}
Redundant errors and warnings should be collapsed into a single one, perhaps with a counter of how many times the error has occured
Closing ticket as fixed.