Project

General

Profile

Actions

Bug #4584

closed

trace doesn't work for methods set up by attr_*

Added by QaDeS (Michael Klaus) about 13 years ago. Updated almost 13 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
ruby -v:
ruby 1.8.7 (2011-02-18 patchlevel 334) [x86_64-linux]
[ruby-core:35791]

Description

=begin
See also issue #4583 for Ruby 1.9.

Methods set up with attr_accessor or alike are not traceable:

class Foo
attr_writer :bar
def baz=(value)
@baz = value
end
end

set_trace_func proc{|*args| puts args.inspect}
@foo = Foo.new # will be traced
@foo.bar = 'bar' # call to bar= will not be traced
@foo.baz = 'baz' # call to baz= will be traced

Expected behavior: "c-call" and "c-return" are traced.
=end


Related issues 1 (0 open1 closed)

Related to Ruby master - Bug #4583: trace doesn't work for methods set up by attr_*Rejectedko1 (Koichi Sasada)04/17/2011Actions
Actions

Also available in: Atom PDF

Like0
Like0