summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/keyword_method_names.txt
blob: d3b6eac537963a9d8f44f021e3fda63605b72005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
def def
end

def self.ensure
end

private def foo
  bar do
  end
end

def m(a, **nil)
end

%{abc}

%"abc"

def nil::a
end