From 7510eef7484aa620d7dd16f191147c9b877b59b7 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 12 Dec 2018 15:45:06 +0000 Subject: 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 --- test/ruby/test_settracefunc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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' -- cgit v1.2.3