String#index shouldn't return nil when "".index ""

This commit is contained in:
ksss
2017-03-05 14:15:18 +09:00
parent 8b089c09f7
commit 76e10351fa
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1608,7 +1608,7 @@ mrb_str_index(mrb_state *mrb, mrb_value str)
return mrb_nil_value();
}
}
if (pos >= clen) return mrb_nil_value();
if (pos > clen) return mrb_nil_value();
pos = chars2bytes(str, 0, pos);
switch (mrb_type(sub)) {
+2
View File
@@ -402,6 +402,8 @@ assert('String#index', '15.2.10.5.22') do
assert_equal 0, 'abc'.index('a')
assert_nil 'abc'.index('d')
assert_equal 3, 'abcabc'.index('a', 1)
assert_equal 5, "hello".index("", 5)
assert_equal nil, "hello".index("", 6)
end
assert('String#initialize', '15.2.10.5.23') do