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 251824 - Mark occurrences doesn't work.
Summary: Mark occurrences doesn't work.
Status: RESOLVED FIXED
Alias: None
Product: javascript
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-04-14 12:30 UTC by Petr Pisl
Modified: 2015-04-17 03:02 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-14 12:30:30 UTC
Have a code:

/** Implementation of the MyLib Library */
var MyLib = new function MyLib() {};

/** @constructor
 *  @returns {MyLib.ObjB} description */
MyLib.ObjB = function (arg) {
    /** JsDoc for MyLib.ObjB.aproperty
     * @type {number|boolean} */
    this.aproperty = 10;
};

/** Constructs MyLib.ObjB
 *  @return {MyLib.ObjB} */
MyLib.objB = function () {
    return new MyLib.ObjB(); 
};
 

var b1 = MyLib.objB();    // <- place cursor into objB identifier
var res = b1.aproperty;


When you place cursor in objB() identifier, the mark occurrences marks nothing.
Comment 1 Petr Pisl 2015-04-16 07:45:24 UTC
Fixed in web-main.
Comment 2 Quality Engineering 2015-04-17 03:02:27 UTC
Integrated into 'main-silver', will be available in build *201504170001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/140ff070c593
User: Petr Pisl <ppisl@netbeans.org>
Log: #251824 - Mark occurrences doesn't work.