Skip to content

Reorder statements/blocks while maintaining code functionality #5

Description

@generic-github-user

For example,

a = 7
b = 32
c = a * b

could be rewritten as

b = 32
a = 7
c = a * b

but not as

a = 7
c = a * b
b = 32

Metadata

Metadata

Labels

No labels
No labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions