astnorm icon indicating copy to clipboard operation
astnorm copied to clipboard

Split assignments / defs

Open quasilyte opened this issue 7 years ago • 0 comments

Where possible, split single-value context assignments.

- var x, y = 1, 2
+ var x = 1
+ var y = 2

This makes handling assignments a little bit easier.

quasilyte avatar Jan 24 '19 22:01 quasilyte