army8735 / jsdc

Javascript Downcast (es6 to es5)
http://army8735.me/jsdc
93 stars 12 forks source link

需要 spread 对 new 的支持. #21

Closed lixiaoyan closed 9 years ago

lixiaoyan commented 10 years ago
new Cls(...args);

在 traceur 中是展开为:

new (Function.prototype.bind.apply(Cls, $traceurRuntime.spread([null], args)))();
army8735 commented 10 years ago

确实疏忽了