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 - Avoiding unnecessary parsing
Summary: Avoiding unnecessary parsing
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 7.0.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-26 11:41 UTC by rmartins
Modified: 2011-04-26 11:41 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

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