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 - Add code completion to parameter objects in Func block
Summary: Add code completion to parameter objects in Func block
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-20 23:21 UTC by buhrmi
Modified: 2011-01-28 20:12 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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?