1
1
mirror of https://github.com/github/semantic.git synced 2024-12-03 00:16:52 +03:00
semantic/test/fixtures/ruby/methods.A.rb
2017-07-07 09:15:24 -07:00

24 lines
162 B
Ruby

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
def self.foo
end
def self.foo(a, b)
end