Bug 10570

Summary: ast: CatchClause has incorrect startingPoint
Product: [Eclipse Project] JDT Reporter: Adam Kiezun <akiezun>
Component: CoreAssignee: Olivier Thomann <Olivier_Thomann>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.0 M4   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Adam Kiezun CLA 2002-03-01 05:39:42 EST
CatchClause begins on the 'e' temp here:

package p;
class A{
	void m(){
		try{
		} catch (Exception e){
			m();			
		}
	}
}
Comment 1 Olivier Thomann CLA 2002-03-01 10:01:33 EST
The problem comes from the fact that the position of the catch keyword in not stored. I will fix it 
with a manual scanning.
Comment 2 Olivier Thomann CLA 2002-03-01 14:10:20 EST
Fixed and released in HEAD.