Bug 22377

Summary: DOM: not all field accesses are represented by a FieldAccess Node
Product: [Eclipse Project] JDT Reporter: Dirk Baeumer <dirk_baeumer>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.1 M1   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Dirk Baeumer CLA 2002-08-13 06:55:03 EDT
2.x

Consider the following example

public class A {
	int field;
	
	public void foo() {
		field= 10;              (1)
		this.field= 10;         (2)
	}
}


The left hand side of the first assignment is a simple name whereas the left 
hand side of the second assignment is a field access. What is the rational 
behind this ?
Comment 1 Philipe Mulet CLA 2002-08-13 07:56:34 EDT

*** This bug has been marked as a duplicate of 22132 ***