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 130606 - Meta-programming debugger
Summary: Meta-programming debugger
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-03-20 05:14 UTC by richo
Modified: 2011-01-28 20:11 UTC (History)
1 user (show)

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 richo 2008-03-20 05:14:01 UTC
A basic idea of the concept is in this blog post:
http://gilesbowkett.blogspot.com/2008/03/simple-metaprogramming-logger-with.html

Maybe only work with jRuby (so you can hook the right places).

The idea is to integrate into the IDE the ability to debug the dynamic nature of Ruby. So if a method has been added
into a class/object at runtime (possibly using eval) then the debugger is able to show the added code and allow
debugging of it, but also show where, when and how the code was added (which may have happened a long time before the
debugging session hit it).

This should track mixins etc.. so when you step into a mixin you can find out when and how that mixin was mixed in.