Skip to content

Commit

Permalink
* vm_trace.c (rb_tracepoint_attr_method_id):
Browse files Browse the repository at this point in the history
  rename TracePoint#id to TracePoint#method_id.
* include/ruby/debug.h: ditto.
* test/ruby/test_settracefunc.rb: ditto,



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ko1 committed Nov 29, 2012
1 parent 89c889d commit 479e396
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Thu Nov 29 14:56:30 2012 Koichi Sasada <[email protected]>

* vm_trace.c (rb_tracepoint_attr_method_id):
rename TracePoint#id to TracePoint#method_id.

* include/ruby/debug.h: ditto.

* test/ruby/test_settracefunc.rb: ditto,

Thu Nov 29 14:49:10 2012 Koichi Sasada <[email protected]>

* vm_trace.c (rb_tracepoint_attr_defined_class):
Expand Down
2 changes: 1 addition & 1 deletion include/ruby/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ VALUE rb_tracepoint_enabled_p(VALUE tpval);
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_method_id(VALUE tpval);
VALUE rb_tracepoint_attr_defined_class(VALUE tpval);
VALUE rb_tracepoint_attr_binding(VALUE tpval);
VALUE rb_tracepoint_attr_self(VALUE tpval);
Expand Down
8 changes: 4 additions & 4 deletions test/ruby/test_settracefunc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def trace_by_tracepoint *trace_events

eval <<-EOF.gsub(/^.*?: /, ""), nil, 'xyzzy'
1: trace = TracePoint.trace(*trace_events){|tp|
2: events << [tp.event, tp.lineno, tp.path, tp.defined_class, tp.id, tp.self, tp.binding.eval("local_var"), get_data.(tp)]
2: events << [tp.event, tp.lineno, tp.path, tp.defined_class, tp.method_id, tp.self, tp.binding.eval("local_var"), get_data.(tp)]
3: }
4: 1.times{|;local_var| local_var = :inner
5: tap{}
Expand Down Expand Up @@ -587,7 +587,7 @@ def test_tracepoint_access_from_outside
assert_raise(RuntimeError){tp_store.lineno}
assert_raise(RuntimeError){tp_store.event}
assert_raise(RuntimeError){tp_store.path}
assert_raise(RuntimeError){tp_store.id}
assert_raise(RuntimeError){tp_store.method_id}
assert_raise(RuntimeError){tp_store.defined_class}
assert_raise(RuntimeError){tp_store.binding}
assert_raise(RuntimeError){tp_store.self}
Expand All @@ -601,7 +601,7 @@ def foo
def test_tracepoint_enable
ary = []
trace = TracePoint.new(:call){|tp|
ary << tp.id
ary << tp.method_id
}
foo
trace.enable{
Expand All @@ -614,7 +614,7 @@ def test_tracepoint_enable
def test_tracepoint_disable
ary = []
trace = TracePoint.trace(:call){|tp|
ary << tp.id
ary << tp.method_id
}
foo
trace.disable{
Expand Down
4 changes: 2 additions & 2 deletions vm_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ fill_id_and_klass(rb_trace_arg_t *trace_arg)
}

VALUE
rb_tracepoint_attr_id(VALUE tpval)
rb_tracepoint_attr_method_id(VALUE tpval)
{
rb_tp_t *tp = tpptr(tpval);
tp_attr_check_active(tp);
Expand Down Expand Up @@ -959,7 +959,7 @@ Init_vm_trace(void)
rb_define_method(rb_cTracePoint, "event", rb_tracepoint_attr_event, 0);
rb_define_method(rb_cTracePoint, "lineno", rb_tracepoint_attr_lineno, 0);
rb_define_method(rb_cTracePoint, "path", rb_tracepoint_attr_path, 0);
rb_define_method(rb_cTracePoint, "id", rb_tracepoint_attr_id, 0);
rb_define_method(rb_cTracePoint, "method_id", rb_tracepoint_attr_method_id, 0);
rb_define_method(rb_cTracePoint, "defined_class", rb_tracepoint_attr_defined_class, 0);
rb_define_method(rb_cTracePoint, "binding", rb_tracepoint_attr_binding, 0);
rb_define_method(rb_cTracePoint, "self", rb_tracepoint_attr_self, 0);
Expand Down

0 comments on commit 479e396

Please sign in to comment.