termi / es6-transpiler

Tomorrow's JavaScript syntax today
Other
216 stars 18 forks source link

S_MARK$0 is not defined #63

Open terasaka2k opened 9 years ago

terasaka2k commented 9 years ago
function func1() {
  for (let x of {}) console.log(1);

  function func2(...args){ console.log(...args); }
  function func3() { [ for (x of []) x ]; }
}

func1();

This code results in S_MARK$0 is not defined