1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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')) # 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