summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/unparser/corpus/literal/opasgn.txt
blob: 5858d773d09ccb6d2732e1d1ac6bdc09c3ef3aec (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
a += 2
a -= 2
a **= 2
a *= 2
a /= 2
a &&= b
a ||= 2
(a ||= 2).bar
(h ||= {})[k] = v
a.b += 2
a.b -= 2
a.b **= 2
a.b *= 2
a.b /= 2
a.b &&= b
a.b ||= 2
a[b] += 2
a[b] -= 2
a[b] **= 2
a[b] *= 2
a[b] /= 2
a[b] &&= b
a[b] ||= 2
foo.A += 1