----
if (true) {
  var a = 1, b, c = 2, d;
}
----
if true
  a = 1
  b = undefined
  c = 2
  d = undefined
