1. 10 Apr, 2015 1 commit
  2. 09 Apr, 2015 2 commits
  3. 08 Apr, 2015 1 commit
  4. 07 Apr, 2015 1 commit
  5. 19 Mar, 2015 1 commit
  6. 18 Mar, 2015 2 commits
  7. 10 Mar, 2015 1 commit
  8. 09 Mar, 2015 1 commit
  9. 26 Feb, 2015 2 commits
  10. 20 Feb, 2015 2 commits
  11. 18 Feb, 2015 2 commits
  12. 17 Feb, 2015 1 commit
  13. 16 Feb, 2015 1 commit
  14. 11 Feb, 2015 4 commits
  15. 10 Feb, 2015 1 commit
  16. 09 Feb, 2015 1 commit
  17. 06 Feb, 2015 2 commits
  18. 05 Feb, 2015 2 commits
  19. 04 Feb, 2015 1 commit
    • marja's avatar
      Introduce LanguageMode, drop StrictMode. · c7851da4
      marja authored
      This enables adding more language modes in the future.
      
      For maximum flexibility, LanguageMode is a bitmask, so we're not restricted to
      use a sequence of language modes which are progressively stricter, but we can
      express the language mode as combination of features.
      
      For now, LanguageMode can only be "sloppy" or "strict", and there are
      STATIC_ASSERTS in places which need to change when more modes are added.
      
      LanguageMode is a bit like the old LanguageMode when "extended" mode was still
      around (see https://codereview.chromium.org/8417035 and
      https://codereview.chromium.org/181543002 ) except that it's transmitted through
      all the layers (there's no StrictModeFlag).
      
      BUG=
      
      Review URL: https://codereview.chromium.org/894683003
      
      Cr-Commit-Position: refs/heads/master@{#26419}
      c7851da4
  20. 03 Feb, 2015 1 commit
  21. 02 Feb, 2015 1 commit
  22. 30 Jan, 2015 1 commit
  23. 21 Jan, 2015 1 commit
  24. 20 Jan, 2015 1 commit
  25. 16 Jan, 2015 1 commit
  26. 22 Dec, 2014 1 commit
  27. 20 Dec, 2014 1 commit
  28. 19 Dec, 2014 2 commits
  29. 10 Dec, 2014 1 commit
    • adamk's avatar
      Optimize Object.seal and Object.preventExtensions · 4fa7ae1c
      adamk authored
      They both now run fast (due to utilizing transitions instead of always
      creating new maps) and sealed or non-extensible objects can stay in
      fast mode after transitioning.
      
      This almost entirely reuses the code for transitioning objects
      frozen by Object.freeze(), with the added benefit of freeing
      up a bit on the map (we no longer keep track of frozen-ness,
      as that bit wasn't used for anything interesting).
      
      BUG=v8:3662,chromium:115960
      LOG=y
      
      Review URL: https://codereview.chromium.org/776143005
      
      Cr-Commit-Position: refs/heads/master@{#25759}
      4fa7ae1c