mukul-rathi / bolt

Bolt is a language with in-built data-race freedom!
MIT License
564 stars 51 forks source link

Remove variable shadowing #74

Closed mukul-rathi closed 4 years ago

mukul-rathi commented 4 years ago

e.g.

let x = {
  let x = ...
}

should go to

let _var_x0 = {
  let _var_x1 = ...
}

(unique names make subsequent steps easier to reason about)