1. 17 Nov, 2016 1 commit
  2. 10 Nov, 2016 1 commit
  3. 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
  4. 11 Oct, 2016 1 commit
  5. 07 Oct, 2016 1 commit
  6. 20 Jul, 2016 2 commits
  7. 19 Jul, 2016 1 commit
  8. 28 Jun, 2016 1 commit
  9. 19 May, 2016 3 commits
  10. 22 Apr, 2016 1 commit
  11. 07 Apr, 2016 1 commit
  12. 11 Feb, 2016 1 commit
  13. 27 Jan, 2016 1 commit
  14. 18 Jan, 2016 2 commits
  15. 30 Sep, 2015 1 commit
  16. 11 Aug, 2015 2 commits
  17. 19 Jun, 2015 1 commit
  18. 27 Apr, 2015 1 commit
  19. 24 Apr, 2015 1 commit
  20. 23 Apr, 2015 1 commit
  21. 09 Apr, 2015 1 commit
    • yangguo's avatar
      Eagerly escape RegExp.source. · 4a5de9d9
      yangguo authored
      Escaping used to happen lazily, implemented in an accessor property.
      However, native implementation of RegExp methods use .source as well.
      This leads to performance regressions. Now we do it eagerly instead.
      
      R=jkummerow@chromium.org
      BUG=chromium:436447
      LOG=N
      
      Review URL: https://codereview.chromium.org/1070093002
      
      Cr-Commit-Position: refs/heads/master@{#27705}
      4a5de9d9
  22. 17 Feb, 2015 1 commit
  23. 29 Jan, 2015 1 commit
  24. 21 Nov, 2014 1 commit
  25. 14 Oct, 2014 1 commit
  26. 02 Oct, 2014 1 commit
  27. 25 Aug, 2014 1 commit
  28. 20 Aug, 2014 1 commit
    • wingo@igalia.com's avatar
      Support symbol-named properties in API · e929f5fe
      wingo@igalia.com authored
      Add new "Name" type to API that is a supertype of Symbol and String.
      
      Object::SetDeclaredAccessor, Object::SetAccessorProperty, Template::Set,
      Template::SetAccessorProperty, and Template::SetDeclaredAccessor now
      take a Name as the property name instead of a String.
      
      Add Object::SetAccessor, Template::SetNativeDataProperty, and
      ObjectTemplate::SetAccessor overloads that can define accessors for
      symbol-named properties.
      
      R=dcarney@chromium.org, rossberg@chromium.org
      BUG=v8:3394
      TEST=cctest/test-api/TestSymbolProperties
      LOG=Y
      
      Review URL: https://codereview.chromium.org/459413002
      
      git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23247 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      e929f5fe
  29. 11 Aug, 2014 1 commit
  30. 02 Jul, 2014 1 commit
  31. 03 Jun, 2014 1 commit
  32. 28 May, 2014 1 commit
  33. 26 May, 2014 3 commits