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 223679 - SemiTipes are visible as types of items in cc window
Summary: SemiTipes are visible as types of items in cc window
Status: RESOLVED FIXED
Alias: None
Product: javascript
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.3
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-11 20:42 UTC by Petr Pisl
Modified: 2012-12-14 02:43 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 Petr Pisl 2012-12-11 20:42:43 UTC
Have a code:

Test223602 = {
    event: "bla",
    id: 10,
    complex : {
        name : "haha",
        number: 20,       
    }
};

function getTest223602() {
    return Test223602;   
}

var p223602_1 = getTest223602();
p223602_1.event;
var p223602_2 = getTest223602().event;
p223602_2.big();
var p223602_3 = getTest223602().complex.name;
p223602_3.big(); 
var EventEmitter = require("events").EventEmitter;

p|

Invoke cc after the p as is marked via char '|'. Semitypes are visible in cc window for p223602_2 and p223602_3 variables
Comment 1 Petr Pisl 2012-12-12 20:24:33 UTC
Fixed in web-main:
http://hg.netbeans.org/web-main/rev/b2be3cbc277d
Comment 2 Quality Engineering 2012-12-14 02:43:54 UTC
Integrated into 'main-golden', will be available in build *201212140001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main-golden/rev/b2be3cbc277d
User: Petr Pisl <ppisl@netbeans.org>
Log: #223679 - SemiTipes are visible as types of items in cc window