From d187f4bc215119469c3da6828ef78f216dfe20f2 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 26 Nov 2012 23:25:21 +0000 Subject: * vm_trace.c: rename TracePoint#file and TracePoint#line to TracePoint#path and TracePoint#lineno respectively. They are consistent to RubyVM::Backtrace::Location. * include/ruby/debug.h: ditto. * vm_core.h: ditto. * test/ruby/test_settracefunc.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37876 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_settracefunc.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/ruby/test_settracefunc.rb b/test/ruby/test_settracefunc.rb index 9912dc9f4a..935fe3f8b5 100644 --- a/test/ruby/test_settracefunc.rb +++ b/test/ruby/test_settracefunc.rb @@ -418,7 +418,7 @@ class TestSetTraceFunc < Test::Unit::TestCase eval <<-EOF.gsub(/^.*?: /, ""), nil, 'xyzzy' 1: trace = TracePoint.trace(*trace_events){|tp| - 2: events << [tp.event, tp.line, tp.file, tp.klass, tp.id, tp.self, tp.binding.eval("local_var"), get_data.(tp)] + 2: events << [tp.event, tp.lineno, tp.path, tp.klass, tp.id, tp.self, tp.binding.eval("local_var"), get_data.(tp)] 3: } 4: 1.times{|;local_var| local_var = :inner 5: tap{} @@ -584,9 +584,9 @@ class TestSetTraceFunc < Test::Unit::TestCase tap{} trace.disable - assert_raise(RuntimeError){tp_store.line} + assert_raise(RuntimeError){tp_store.lineno} assert_raise(RuntimeError){tp_store.event} - assert_raise(RuntimeError){tp_store.file} + assert_raise(RuntimeError){tp_store.path} assert_raise(RuntimeError){tp_store.id} assert_raise(RuntimeError){tp_store.klass} assert_raise(RuntimeError){tp_store.binding} -- cgit v1.2.3