Bug 14217

Summary: DOM/AST: wrong start position for expression statement
Product: [Eclipse Project] JDT Reporter: Dirk Baeumer <dirk_baeumer>
Component: CoreAssignee: Olivier Thomann <Olivier_Thomann>
Status: RESOLVED FIXED QA Contact:
Severity: major    
Priority: P3    
Version: 2.0   
Target Milestone: 2.0 M6   
Hardware: PC   
OS: Windows ME   
Whiteboard:
Bug Depends on:    
Bug Blocks: 10245    

Description Dirk Baeumer CLA 2002-04-19 09:11:09 EDT
Build 20020418

Example:

public class A {
	A f;
	public A a() {
		a().f= a();
		return null;
	}
}


The start position of the expression statement a().f= a() is 48 but should be 
44. Note that the start position of LHS of the assignment is correct (e.g 44).
Comment 1 Olivier Thomann CLA 2002-04-19 12:12:14 EDT
Should be fixed for next integration build.
Comment 2 Olivier Thomann CLA 2002-04-19 12:46:02 EDT
Fixed and released in HEAD.