1. 29 Jun, 2016 3 commits
    • v8-autoroll's avatar
      Update V8 DEPS. · 5dbec9be
      v8-autoroll authored
      Rolling v8/build to 5340820b7f216d4f155213173cf678774741788d
      
      Rolling v8/buildtools to c36df184fb212b911d5e0fdee45647610e3ea54d
      
      Rolling v8/tools/mb to e79fc1007f026e7d899abec066b714c750103019
      
      TBR=machenbach@chromium.org,vogelheim@chromium.org,hablich@chromium.org
      
      Review-Url: https://codereview.chromium.org/2102393002
      Cr-Commit-Position: refs/heads/master@{#37356}
      5dbec9be
    • jwolfe's avatar
      Allow trailing commas in function parameter lists · 1ac09655
      jwolfe authored
      Add a flag harmony_trailing_commas_in_parameters that allows trailing
      commas in function parameter declaration lists and function call
      parameter lists. Trailing commas are allowed in parenthetical lists like
      `(a, b, c,)` only if the next token is `=>`, thereby making it an arrow
      function declaration. Only 1 trailing comma is allowed, not `(a,,)`. A
      trailing comma must follow a non-rest parameter, so `(,)` and `(...a,)`
      are still SyntaxErrors. However, a trailing comma is allowed after a
      spread parameter, e.g. `a(...b,);`.
      
      Add parser tests for all of the above.
      
      BUG=v8:5051
      LOG=y
      
      Review-Url: https://codereview.chromium.org/2094463002
      Cr-Commit-Position: refs/heads/master@{#37355}
      1ac09655
    • aseemgarg's avatar
      [wasm] fix loops and if-else to take int type instead of signed · fa5cb207
      aseemgarg authored
      BUG=617526
      R=bradnelson@chromium.org
      TEST=regress-617526.js
      
      Review-Url: https://codereview.chromium.org/2101923003
      Cr-Commit-Position: refs/heads/master@{#37354}
      fa5cb207
  2. 28 Jun, 2016 37 commits