1. 15 Sep, 2016 2 commits
  2. 14 Sep, 2016 36 commits
  3. 13 Sep, 2016 2 commits
    • littledan's avatar
      Mark await expressions as caught or uncaught · edb4d315
      littledan authored
      Handle some examples of the "asynchronous case" by marking await expressions
      as either caught or uncaught; in the caught case, this marks the Promise passed
      in as having a catch predicted. The marking is done in AST numbering, which
      chooses between two different runtime function calls based on catch prediction.
      
      BUG=v8:5167
      
      Review-Url: https://codereview.chromium.org/2276243002
      Cr-Commit-Position: refs/heads/master@{#39394}
      edb4d315
    • jpp's avatar
      [V8][Wasm] Removes references to finally in wasm. · ee8ae932
      jpp authored
      The initial support for low level exception handling in Wasm will not
      support finally blocks. This decision is taken for both simplicity (
      handling finallys is not straightforward if we want try blocks to yield
      values), and lack of good use case (clang++ does not need them.) They
      may be added in the future once we understand the implications of
      having them.
      
      BUG=
      
      Review-Url: https://codereview.chromium.org/2336303002
      Cr-Commit-Position: refs/heads/master@{#39393}
      ee8ae932