slimit
slimit copied to clipboard
Add IF statement optimization N2
Add the following optimization:
if (!foo) bar(); else baz(); ==> foo?baz():bar();