1. 15 Nov, 2019 1 commit
  2. 05 Sep, 2019 1 commit
  3. 23 Aug, 2019 3 commits
  4. 20 Aug, 2019 1 commit
  5. 28 May, 2019 1 commit
  6. 24 May, 2019 1 commit
  7. 23 May, 2019 1 commit
  8. 22 May, 2019 1 commit
  9. 20 May, 2019 1 commit
  10. 04 Apr, 2019 1 commit
  11. 24 Sep, 2018 1 commit
  12. 04 Sep, 2018 1 commit
  13. 18 Jul, 2018 1 commit
  14. 05 Jul, 2018 1 commit
  15. 05 Jun, 2018 1 commit
  16. 24 Apr, 2018 1 commit
  17. 10 Apr, 2018 1 commit
  18. 19 Mar, 2018 1 commit
  19. 06 Mar, 2018 1 commit
  20. 02 Mar, 2018 1 commit
  21. 29 Nov, 2017 1 commit
  22. 14 Nov, 2017 1 commit
  23. 27 Oct, 2017 1 commit
  24. 26 Oct, 2017 1 commit
    • Igor Sheludko's avatar
      [cleanup] Prepare V8-internal AccessorInfo objects for sharing. · b4fdce5a
      Igor Sheludko authored
      Rename |property_attributes| to |initial_property_attributes| and ensure
      that it is used as a storage of values only for AccessorInfos installed in
      API Templates (i.e. ObjectTemplate and FunctionTemplate).
      When an AccessorInfo is installed directly into an existing JS object
      (via JSObject::SetAccessor) or into a DescriptorArray (when certain V8
      objects' shapes are configured) it is not necessary to thread attributes
      being set through the AccessorInfo instance.
      
      Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
      Change-Id: Ibe61026f08c42549756f694129a286635ffe5769
      Reviewed-on: https://chromium-review.googlesource.com/730425
      Commit-Queue: Igor Sheludko <ishell@chromium.org>
      Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#48978}
      b4fdce5a
  25. 20 Apr, 2017 1 commit
  26. 27 Jan, 2017 1 commit
  27. 17 Nov, 2016 1 commit
  28. 10 Nov, 2016 1 commit
  29. 26 Oct, 2016 1 commit
    • neis's avatar
      [runtime] Let native setters have a return value. · f33a4078
      neis authored
      Native setters (see AccessorInfo in accessors.h) didn't have the ability
      to return a result value. As a consequence of this, for instance, Reflect.set
      on the length property of arrays had the wrong behavior:
      
      var y = [];
      Object.defineProperty(y, 0, {value: 42, configurable: false})
      Reflect.set(y, 'length', 0)
      
      The Reflect.set call used to return true. Now it returns false as
      required by the spec.
      
      BUG=v8:5401
      
      Review-Url: https://codereview.chromium.org/2397603003
      Cr-Commit-Position: refs/heads/master@{#40579}
      f33a4078
  30. 11 Oct, 2016 1 commit
  31. 07 Oct, 2016 1 commit
  32. 20 Jul, 2016 2 commits
  33. 19 Jul, 2016 1 commit
  34. 28 Jun, 2016 1 commit
  35. 19 May, 2016 3 commits