TEXT -> AST -> CSR -> CPS
Remove all whitespace and comments (except documentation comments)
Eliminate control flow keywords like
break
, continue
, fallthrough
yield
, yield_from
Transform such non-local exit to function call.
Identify tail calls and tail recursion.
Common subexpression elimination.