This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 198083

Summary: Avoiding unnecessary parsing
Product: cnd Reporter: rmartins <rmartins>
Component: Code ModelAssignee: issues@cnd <issues>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.0.1   
Hardware: PC   
OS: Linux   
Issue Type: ENHANCEMENT Exception Reporter:

Description rmartins 2011-04-26 11:41:55 UTC
Hi,
ex;

class A{
public:
A(){}
virtual ~A(){}

void doit(int a); ==> void doit(int b);

};


B.h
#include "A.h"

class B{
...
void dostuff(){
  a.doit(1);
}

protected:
A a;
};


When editing from void doit(int a) to doit(int b), this shouldn't trigger a reparse in all the files that include A.h.


Thanks,
Rolando