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 251984 - Mark coccurrences doesn't work transparently
Summary: Mark coccurrences doesn't work transparently
Status: RESOLVED FIXED
Alias: None
Product: javascript
Classification: Unclassified
Component: Navigation (show other bugs)
Version: 8.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks: 242344
  Show dependency tree
 
Reported: 2015-04-22 11:36 UTC by Petr Pisl
Modified: 2015-04-23 02:10 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 2015-04-22 11:36:17 UTC
Have a code:

var myLib = new function MyLib() {
   
    this.f1 = f1; 
    
    /**
     * f1 JsDoc, note: "this.f1 = f1;" occurs before function 'f1' in text
     * @param {string} f1arg f1arg JsDoc
     */
    function f1(f1arg) {
        // many lines of text ...
    };
    
    /**
     * f2 JsDoc, note: "this.f2 = f2;" occurs after function 'f2' in text
     * @param {string} f2arg f2arg JsDoc
     */
    function f2(f2arg) {
        // many lines of text ...
    };
    this.f2 = f2;
    
    // (1.1) Intellisence - OK
    f1("arg");
    // (1.2) Intellisence - OK
    f2("arg");
};

// (2.1) Intellisence is NOT aware about myLib.f1().
myLib.f1();

// (2.2) Intellisence is NOT aware about myLib.f2().
myLib.f2();

When you place cursor at my|Lib.f2(); then all occurrences are highlighted correctly. But when you place cursor at var myLi|b = new function MyLib() { , then no occurrence is highlighted.
Comment 1 Petr Pisl 2015-04-22 12:18:03 UTC
Fixed in web-main.
Comment 2 Quality Engineering 2015-04-23 02:10:57 UTC
Integrated into 'main-silver', will be available in build *201504230001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/f2c3a4549226
User: Petr Pisl <ppisl@netbeans.org>
Log: #251984 - Mark coccurrences doesn't work transparently