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 237939 - Occurrence of identifier in Ext classes doesn't work as expected.
Summary: Occurrence of identifier in Ext classes doesn't work as expected.
Status: NEW
Alias: None
Product: javascript
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.4
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on: 231923
Blocks:
  Show dependency tree
 
Reported: 2013-11-04 10:39 UTC by Petr Pisl
Modified: 2013-11-04 11:22 UTC (History)
1 user (show)

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 2013-11-04 10:39:54 UTC
Have a code

Ext.define('My.app.Panel', {
    constructor: function(config) {
    }
});
 
Ext.define('My.app.PanelPart2', {
    override: 'My.app.Panel',
    constructor: function(config) {
    }
});
   
var obj = My.app.PanelPart2;

The occurence of app and PanlePart2 are not working correctly at the last line. Basically are not counted.