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 86341 - code completion works incorrectly on pointer
Summary: code completion works incorrectly on pointer
Status: CLOSED INVALID
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 5.x
Hardware: All All
: P2 blocker (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-02 22:13 UTC by julieg
Modified: 2008-01-30 14:20 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 julieg 2006-10-02 22:13:29 UTC
This bug was reported from the cnd user forum:

UTO_impl * utoAbs = new UTO_impl(atimeV, ainaccurV , atdfV);
utoAbs-

I get the desired popup, but instead of e.g "utoAbs->_is_a( " the
completion is to "utoAbs-_is_a(" without the ">".
Comment 1 Vladimir Voskresensky 2006-10-31 14:52:47 UTC
For me it seems, there is no any problems.
We support completion in expressions like "a + |" and in "a->", so, when you
have completion for a-> and delete one char => there is completion for a-
(arithmetic expression). In your case it seems, that this two contexts are the
same => _is_a method is visible in both situations:
- for variable utoAbs (method of UTO_impl class)
- for current expression "a - |"in context of current method (i.e. method is
from class, where "_is_a" valid method)

I close it as "INVALID" if the situation as described above. Please, reopen in
opposite case and provide more information.