Bug 22377 - DOM: not all field accesses are represented by a FieldAccess Node
Summary: DOM: not all field accesses are represented by a FieldAccess Node
Status: RESOLVED DUPLICATE of bug 22132
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.1 M1   Edit
Assignee: Philipe Mulet CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-13 06:55 EDT by Dirk Baeumer CLA
Modified: 2003-03-23 12:12 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***