Fix an inaccurate comment in test_jit

This commit is contained in:
Takashi Kokubun 2020-07-10 00:47:26 -07:00
parent 7fa3c71bec
commit 615758bd82
No known key found for this signature in database
GPG Key ID: 6FFC433B12EE23DD

View File

@ -805,7 +805,9 @@ class TestJIT < Test::Unit::TestCase
print(test('a')) # set #to_s cc to String#to_s (expecting C method) print(test('a')) # set #to_s cc to String#to_s (expecting C method)
print(test('a')) # JIT with #to_s cc: String#to_s print(test('a')) # JIT with #to_s cc: String#to_s
print(test('a', recursive: :foo)) # update #to_s cd->cc to Symbol#to_s, then go through inlined #to_s cc with Symbol#to_s # update #to_s cd->cc to Symbol#to_s, then go through the Symbol#to_s cd->cc
# after checking receiver class using inlined #to_s cc with String#to_s.
print(test('a', recursive: :foo))
end; end;
end end