Created by: liym27
As the title, support to transform sequence assignments and multi-target assignments to normal assignments.
Code transformation is as follows:
- Before:
a, b = c, d
- After:
a = c
b = d
- Before:
a, b = c, d = x
- After:
c,d = x
a = c
b = d