1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 21:31:48 +03:00
semantic/test/fixtures/ruby/corpus/for.A.rb

12 lines
102 B
Ruby
Raw Normal View History

2017-02-23 01:36:22 +03:00
for x in y
f
2017-02-23 01:41:30 +03:00
end
2017-07-06 19:44:10 +03:00
for x, y in z do
f
end
2017-08-01 21:40:56 +03:00
for n in 1..3 do true end
2017-08-02 20:37:57 +03:00
for n, m in 1..3 do true end