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 137860

Summary: Add code completion to parameter objects in Func block
Product: ruby Reporter: buhrmi <buhrmi>
Component: Code CompletionAssignee: issues@ruby <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description buhrmi 2008-06-20 23:21:10 UTC
Code-Completion in function blocks like
5.times { |i|
 puts i.XXXX
}
does not work. This is a important feature for rails because most code completion for models views relies on this, for
example:
<% users.each do |user| %>
 <%= user.XXX %>
<% end %>

Are there any plans to add this?