1
1
mirror of https://github.com/github/semantic.git synced 2024-12-11 08:45:48 +03:00
semantic/test/fixtures/ruby/methods.A.rb

24 lines
162 B
Ruby
Raw Normal View History

def foo
end
def bar=
end
def -@(a)
end
def foo(a, b: false, c: nil, **)
end
def foo(*args)
end
def foo(&block)
end
2017-07-06 01:41:54 +03:00
2017-07-07 19:15:24 +03:00
def self.foo
end
def self.foo(a, b)
2017-07-06 01:41:54 +03:00
end