syntax icon indicating copy to clipboard operation
syntax copied to clipboard

Redundant braces in interpolation are added in printer

Open amiralies opened this issue 4 years ago • 0 comments

let a = j`foo${
    let x = "bar"
    x
  }baz`

is printed into

let a = j`foo${{
    let x = "bar"
    x
  }}baz`

amiralies avatar Jun 15 '21 15:06 amiralies