Bug #4364 » ripper.splat.test.diff
test/ripper/test_parser_events.rb (working copy) | ||
---|---|---|
def test_mlhs_add_star
|
||
bug2232 = '[ruby-core:26163]'
|
||
bug4364 = '[ruby-core:35078]'
|
||
thru_mlhs_add_star = false
|
||
tree = parse("a, *b = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
|
||
... | ... | |
tree = parse("a, *b, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
|
||
assert_equal true, thru_mlhs_add_star
|
||
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_add\(mlhs_new\(\),a\),b\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug2232)
|
||
thru_mlhs_add_star = false
|
||
tree = parse("a, *, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
|
||
assert_equal true, thru_mlhs_add_star
|
||
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_add\(mlhs_new\(\),a\)\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug4364)
|
||
thru_mlhs_add_star = false
|
||
tree = parse("*b, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
|
||
assert_equal true, thru_mlhs_add_star
|
||
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_new\(\),b\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug4364)
|
||
thru_mlhs_add_star = false
|
||
tree = parse("*, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
|
||
assert_equal true, thru_mlhs_add_star
|
||
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_new\(\)\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug4364)
|
||
end
|
||
def test_mlhs_new
|
- « Previous
- 1
- 2
- Next »