1. 08 Jul, 2016 1 commit
    • littledan's avatar
      Avoid calling the builtin String.prototype.split in Intl · 97e8046e
      littledan authored
      The Intl code previously called the initial value of String.prototype.split
      for some internal operations. However, this did not have the intended effect
      as Intl only needs to split strings by strings, but String.prototype.split
      has integration with Symbol.split for RegExps.
      
      This patch replaces the calls of StringSplit in the Intl implementation
      with direct calls to the %StringSplit runtime function to avoid the issue.
      
      R=yangguo@chromium.org
      BUG=v8:5179
      
      Review-Url: https://codereview.chromium.org/2126073002
      Cr-Commit-Position: refs/heads/master@{#37615}
      97e8046e