1. 12 May, 2016 1 commit
  2. 06 May, 2016 1 commit
  3. 28 Mar, 2016 1 commit
  4. 16 Mar, 2016 1 commit
  5. 15 Mar, 2016 1 commit
  6. 07 Mar, 2016 6 commits
  7. 29 Jan, 2016 1 commit
    • jkummerow's avatar
      Introduce {FAST,SLOW}_STRING_WRAPPER_ELEMENTS · f4872f74
      jkummerow authored
      String wrappers (new String("foo")) are special objects: their string
      characters are accessed like elements, and they also have an elements
      backing store. This used to require a bunch of explicit checks like:
      
      if (obj->IsJSValue() && JSValue::cast(obj)->value()->IsString()) {
        /* Handle string characters */
      }
      // Handle regular elements (for string wrappers and other objects)
      obj->GetElementsAccessor()->Whatever(...);
      
      This CL introduces new ElementsKinds for string wrapper objects (one for
      fast elements, one for dictionary elements), which allow folding the
      special-casing into new StringWrapperElementsAccessors.
      
      No observable change in behavior is intended.
      
      Review URL: https://codereview.chromium.org/1612323003
      
      Cr-Commit-Position: refs/heads/master@{#33616}
      f4872f74
  8. 02 Dec, 2015 1 commit
  9. 04 Nov, 2015 1 commit
  10. 19 Oct, 2015 1 commit
  11. 30 Sep, 2015 2 commits
  12. 17 Sep, 2015 1 commit
  13. 07 Sep, 2015 1 commit
  14. 02 Sep, 2015 2 commits
  15. 01 Sep, 2015 1 commit
  16. 31 Aug, 2015 2 commits
  17. 27 Aug, 2015 1 commit
  18. 25 Aug, 2015 3 commits
  19. 24 Aug, 2015 1 commit
  20. 20 Aug, 2015 2 commits
  21. 31 Jul, 2015 1 commit
  22. 10 Jul, 2015 2 commits
  23. 07 Jul, 2015 1 commit
  24. 06 Jul, 2015 1 commit
  25. 03 Jul, 2015 1 commit
  26. 02 Jul, 2015 1 commit
  27. 25 Jun, 2015 2 commits