1. 06 Jul, 2020 1 commit
  2. 06 Feb, 2020 1 commit
  3. 13 Dec, 2019 1 commit
  4. 20 Sep, 2019 1 commit
  5. 26 Jun, 2019 1 commit
  6. 24 Jun, 2019 1 commit
  7. 15 May, 2019 2 commits
  8. 08 May, 2019 1 commit
  9. 26 Feb, 2019 1 commit
  10. 16 Feb, 2019 1 commit
  11. 22 Jan, 2019 1 commit
  12. 18 Sep, 2018 1 commit
  13. 14 Sep, 2018 1 commit
  14. 13 Sep, 2018 1 commit
  15. 02 Aug, 2018 1 commit
  16. 01 Aug, 2018 2 commits
  17. 06 Mar, 2018 1 commit
  18. 16 Feb, 2018 1 commit
  19. 02 Dec, 2017 1 commit
    • Mathias Bynens's avatar
      Normalize casing of hexadecimal digits · 822be9b2
      Mathias Bynens authored
      This patch normalizes the casing of hexadecimal digits in escape
      sequences of the form `\xNN` and integer literals of the form
      `0xNNNN`.
      
      Previously, the V8 code base used an inconsistent mixture of uppercase
      and lowercase.
      
      Google’s C++ style guide uses uppercase in its examples:
      https://google.github.io/styleguide/cppguide.html#Non-ASCII_Characters
      
      Moreover, uppercase letters more clearly stand out from the lowercase
      `x` (or `u`) characters at the start, as well as lowercase letters
      elsewhere in strings.
      
      BUG=v8:7109
      TBR=marja@chromium.org,titzer@chromium.org,mtrofin@chromium.org,mstarzinger@chromium.org,rossberg@chromium.org,yangguo@chromium.org,mlippautz@chromium.org
      NOPRESUBMIT=true
      
      Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_chromium_rel_ng
      Change-Id: I790e21c25d96ad5d95c8229724eb45d2aa9e22d6
      Reviewed-on: https://chromium-review.googlesource.com/804294
      Commit-Queue: Mathias Bynens <mathias@chromium.org>
      Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49810}
      822be9b2
  20. 06 Nov, 2017 1 commit
    • Alexey Kozyatinskiy's avatar
      [inspector] added new way to step into async task · 079c0fd8
      Alexey Kozyatinskiy authored
      It is preparation step for step-into-worker. There are few changes:
      - added breakOnAsyncCall flag for Debugger.stepInto. When flag is set
        and async task is scheduled before step-into finished, we pause
        execution with additional Debugger.paused event. This event contains
        additional scheduledAsyncTaskId field.
      - added Debugger.pauseOnAsyncTask. This method will pause execution as
        soon as given async task is started.
      
      This mechanism is replacement for Debugger.scheduleStepIntoAsync which
      can not be used between multiple targets.
      
      As result we can split async task scheduling in one target and
      requesting break for this async task running in another target.
      
      R=pfeldman@chromium.org
      
      Bug: chromium:778796
      Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel
      Change-Id: I77be0c880d91253d333c54a23a4c084e7b8549e9
      Reviewed-on: https://chromium-review.googlesource.com/750071Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
      Reviewed-by: 's avatarPavel Feldman <pfeldman@chromium.org>
      Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49127}
      079c0fd8
  21. 17 Jul, 2017 1 commit
  22. 29 Nov, 2016 1 commit
  23. 22 Nov, 2016 1 commit
  24. 15 Nov, 2016 1 commit
    • clemensh's avatar
      [inspector] Fix and refactor String16 · c9c6c1a3
      clemensh authored
      This CL defines move semantics for String16, and fixes issues with the
      hash code not being set correctly on swap or copy.
      It also extends the interface by a few handy templates.
      All this functionality will be used for the wasm translations, where
      String16s are often concatenated and used as keys in hash tables.
      
      BUG=chromium:659715
      R=yangguo@chromium.org, kozyatinskiy@chromium.org
      
      Review-Url: https://codereview.chromium.org/2493723003
      Cr-Commit-Position: refs/heads/master@{#41007}
      c9c6c1a3
  25. 25 Oct, 2016 1 commit
    • kozyatinskiy's avatar
      [inspector] enable inspector by default · d7a18896
      kozyatinskiy authored
      To achieve this:
      - fixed crash on windows - String16::fromInteger used "%zu" which doesn't support by VS2013 compiler, wrapped with ifdef else.
      - fixed asan for d8 - unique_ptr on array has single element type.
      - force Debugger.disable at the end of test.
      
      BUG=chromium:635948
      R=dgozman@chromium.org,yangguo@chromium.org,machenbach@chromium.org
      
      Review-Url: https://codereview.chromium.org/2450653002
      Cr-Commit-Position: refs/heads/master@{#40546}
      d7a18896
  26. 13 Oct, 2016 1 commit
  27. 12 Oct, 2016 1 commit
  28. 11 Oct, 2016 1 commit
  29. 05 Oct, 2016 1 commit
  30. 26 Sep, 2016 1 commit
  31. 22 Sep, 2016 1 commit
  32. 21 Sep, 2016 1 commit
  33. 15 Sep, 2016 1 commit
  34. 14 Sep, 2016 1 commit
  35. 13 Sep, 2016 1 commit
  36. 01 Sep, 2016 1 commit
  37. 31 Aug, 2016 2 commits