mirror of
https://github.com/github/codeql.git
synced 2026-01-24 20:02:58 +01:00
28 lines
282 B
Ruby
28 lines
282 B
Ruby
require_relative "./other"
|
|
|
|
class A
|
|
def foo(x, y, key1:, **kwargs, &block)
|
|
end
|
|
|
|
def bar(x, *args)
|
|
end
|
|
|
|
def self.self_foo(x, y)
|
|
end
|
|
|
|
private
|
|
|
|
def private_1(x, y)
|
|
end
|
|
|
|
class ANested
|
|
def foo(x, y)
|
|
end
|
|
|
|
private
|
|
|
|
def private_2(x, y)
|
|
end
|
|
end
|
|
end
|