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

Summary: Occurrence of identifier in Ext classes doesn't work as expected.
Product: javascript Reporter: Petr Pisl <ppisl>
Component: EditorAssignee: Petr Pisl <ppisl>
Status: NEW ---    
Severity: normal CC: vriha
Priority: P3    
Version: 7.4   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:
Bug Depends on: 231923    
Bug Blocks:    

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.