tagbar/tests/ruby/singleton.rb
2013-04-06 00:59:14 +13:00

14 lines
104 B
Ruby

class Foo
def a
end
def b
end
def Foo.c(item)
end
def self.d
end
end