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 136806 - Completion should take into account expanded text
Summary: Completion should take into account expanded text
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks: 108501
  Show dependency tree
 
Reported: 2008-06-09 12:40 UTC by Alexander Simon
Modified: 2009-04-02 15:47 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Simon 2008-06-09 12:40:10 UTC
Code example:
----------------------
namespace ns_aaa{
    int in_aaa;
}
#define NS(suffix) ns_##suffix
 
void foo(){
    NS(aaa)::in_aaa;
    ns_aaa::in_aaa;
}
----------------------
Completion does not work in context "NS(aaa)::".
Hyper link on variable "n_aaa" does not work in context "NS(aaa)::in_aaa".
Comment 1 Alexander Pepin 2008-11-19 18:23:43 UTC
Alexander S: we can not achieve code model accuracy goal without this
Comment 2 nnnnnk 2009-04-02 15:47:15 UTC
fixed