ratel-rust / ratel-core

High performance JavaScript to JavaScript compiler with a Rust core
Apache License 2.0
435 stars 17 forks source link

Error parsing on parameter assignment #108

Closed ntrippar closed 5 years ago

ntrippar commented 5 years ago

error parsing on the following testcase.

(function () {
  var array = [,];

  function increment(v, k, arr) {
    arr[k] = v + 1; 
  }

})();