diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-29 05:52:27 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-29 05:52:27 +0000 |
commit | 89c889d4e72eb39bb70734d2360b9607c1099bdb (patch) | |
tree | 434a38078839ea02266c5445a9d60830c82613ec /include | |
parent | 502ab126ac8d4b87edebb786e69042f13463e525 (diff) |
* vm_trace.c (rb_tracepoint_attr_defined_class):
rename TracePoint#klass to TracePoint#defined_class.
[ruby-core:50187] Re: [ruby-trunk - Feature #6895]
* include/ruby/debug.h: ditto.
* test/ruby/test_settracefunc.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r-- | include/ruby/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/debug.h b/include/ruby/debug.h index 631be79d76..e7a1102250 100644 --- a/include/ruby/debug.h +++ b/include/ruby/debug.h @@ -55,7 +55,7 @@ VALUE rb_tracepoint_attr_event(VALUE tpval); VALUE rb_tracepoint_attr_lineno(VALUE tpval); VALUE rb_tracepoint_attr_path(VALUE tpval); VALUE rb_tracepoint_attr_id(VALUE tpval); -VALUE rb_tracepoint_attr_klass(VALUE tpval); +VALUE rb_tracepoint_attr_defined_class(VALUE tpval); VALUE rb_tracepoint_attr_binding(VALUE tpval); VALUE rb_tracepoint_attr_self(VALUE tpval); VALUE rb_tracepoint_attr_return_value(VALUE tpval); |