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 183337

Summary: Code completion does not work after operators
Product: javafx Reporter: Alexandr Scherbatiy <sunflower>
Component: EditorAssignee: Petr Nejedly <pnejedly>
Status: VERIFIED FIXED    
Severity: normal    
Priority: P3    
Version: 6.x   
Hardware: PC   
OS: Windows XP   
Issue Type: DEFECT Exception Reporter:
Bug Depends on:    
Bug Blocks: 154422    

Description Alexandr Scherbatiy 2010-04-01 11:23:19 UTC
Steps to reproduce:

- Copy the code to the editor:
---------------------------------------
var sequence = [ 1,2,3,4,5];

var size = sizeof se
---------------------------------------
- Position a cursor at the end of the last line and
  press <Ctrl+Space> 
  No Suggestions

 The 'sequence' variable is not sugessted
Comment 1 Alexandr Scherbatiy 2010-04-01 11:24:05 UTC
The same is for the 'delete' operator

--------------------------------------
var sequence = [ 1,2,3,4,5];

delete se
--------------------------------------
Comment 2 Alexandr Scherbatiy 2010-04-01 11:24:52 UTC
NetBeans-JavaFX-Soma: #205

  Product Version         = NetBeans IDE Dev (Build 201003290201) (#1cf56aeaf085)
  Operating System        = Windows XP version 5.1 running on x86
  Java; VM; Vendor        = 1.6.0_15; Java HotSpot(TM) Client VM 14.1-b02; Sun Microsystems Inc.
Comment 3 Petr Nejedly 2010-06-10 08:39:41 UTC
All of this is underimplemnented, but I already have the sizeof case covered.
Comment 4 Petr Nejedly 2010-06-10 12:42:57 UTC
Partially fixed for sizeof and reverse operators:
http://hg.netbeans.org/javafx/rev/d13d3966aa51
Comment 5 Petr Nejedly 2010-06-10 14:16:06 UTC
Added support for insert into/delete from:

http://hg.netbeans.org/javafx/rev/bcc2f088ece5
Comment 6 Alexandr Scherbatiy 2010-06-16 09:06:10 UTC
verified in NetBeans IDE Dev (Build 201006160001)