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 - Code completion does not work after operators
Summary: Code completion does not work after operators
Status: VERIFIED FIXED
Alias: None
Product: javafx
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P3 normal (vote)
Assignee: Petr Nejedly
URL:
Keywords:
Depends on:
Blocks: 154422
  Show dependency tree
 
Reported: 2010-04-01 11:23 UTC by Alexandr Scherbatiy
Modified: 2010-07-08 12: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 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)