Bug 7956 - No reference found to BlockScope.analysisIndex
Summary: No reference found to BlockScope.analysisIndex
Status: RESOLVED WORKSFORME
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.0 M2   Edit
Assignee: Jerome Lanneluc CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-01-21 13:49 EST by Philipe Mulet CLA
Modified: 2002-02-11 04:54 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 Philipe Mulet CLA 2002-01-21 13:49:04 EST
Build 20020115

In self-hosting mode, search for references to field BlockScope.analysisIndex
will not find any match.

Exact steps:
- open the BlockScope unit
- in outliner, find field 'analysisIndex'
- perform a search for references to this field in workspace

There should be at least one, in the same unit:

		binding.id = this.outerMostMethodScope().analysisIndex++;
Comment 1 Jerome Lanneluc CLA 2002-01-22 05:58:03 EST
MethodScope redefines analysisIndex, so the reference 'this.outerMostMethodScope
().analysisIndex++' is a reference to MethodScope.analysisIndex, not to 
BlockScope.analysisIndex.

Closing.