summaryrefslogtreecommitdiff
path: root/test/ruby/test_settracefunc.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-12 15:45:06 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-12 15:45:06 +0000
commit7510eef7484aa620d7dd16f191147c9b877b59b7 (patch)
tree42ef63cf5a3715d42605069652a4a6afac4850b1 /test/ruby/test_settracefunc.rb
parent1a1f9ecb30f300443215bf832f130f30925cf664 (diff)
remove `compiled_` prefix. [Feature #15287]
* vm_trace.c: remove `compiled_` prefix from the following methods: * `compiled_eval_script` * `compiled_instruction_sequence` [Feature #15287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_settracefunc.rb')
-rw-r--r--test/ruby/test_settracefunc.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_settracefunc.rb b/test/ruby/test_settracefunc.rb
index 8fcd043124..2ada093f8d 100644
--- a/test/ruby/test_settracefunc.rb
+++ b/test/ruby/test_settracefunc.rb
@@ -2089,8 +2089,8 @@ class TestSetTraceFunc < Test::Unit::TestCase
events = []
tp = TracePoint.new(:script_compiled){|tp|
next unless target_thread?
- events << [tp.compiled_instruction_sequence.path,
- tp.compiled_eval_script]
+ events << [tp.instruction_sequence.path,
+ tp.eval_script]
}
eval_script = 'a = 1'