12 lines
121 B
Plaintext
12 lines
121 B
Plaintext
|
|
# Round-trip triad: Compound Assign
|
||
|
|
|
||
|
|
# Before (sugar)
|
||
|
|
i += 1
|
||
|
|
|
||
|
|
# Canonical
|
||
|
|
# i = i + 1
|
||
|
|
|
||
|
|
# Round-Trip (expected)
|
||
|
|
# i += 1
|
||
|
|
|