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 126361 - Offer list of methods when Stepping Into
Summary: Offer list of methods when Stepping Into
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-01-31 07:43 UTC by Martin Krauskopf
Modified: 2011-01-28 20:11 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 Martin Krauskopf 2008-01-31 07:43:10 UTC
When user does "Step Into" on line like:

  mixes = select { |a_mix| a_mix.name.downcase.include?(File.basename(to_play).downcase) } if File.exist?(to_play)

pop-up in editor-hints-like style list of method into which it is possible to step, something like:

  +-----------+
  | Step Into |
  +-----------+
  | select    |
  | name      |
  | downcase  |
  | include   |
  | basename  |
  | exist     |
  +-----------+

Maybe with class/module prefixes. Only when appropriate, i.e. >1 method to step into.