dplassgit / d2lang

D2 is a strongly-typed, statically-typed, (mostly) inferred-type compiled language.
MIT License
6 stars 0 forks source link

ConstantPropagationOptimizer is too aggressive #245

Closed dplassgit closed 1 year ago

dplassgit commented 1 year ago
x=3
x=x+1
return x

was being optimized to

x=3
x=3+1
return 3 // NOTYPO

Because the intermediate binary operation wasn't clearing the cache