summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/keyword_method_names.txt
blob: 91544694410a3264285c4a08c61be7ed73c193e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
def def
end

def self.ensure
end

private def foo
  bar do
  end
end

def m(a, **nil)
end

def __ENCODING__.a
end

%{abc}

%"abc"

def __FILE__.a
end

def __LINE__.a
end

def nil::a
end