1. 20 Jun, 2017 1 commit
  2. 16 Feb, 2017 1 commit
    • littledan's avatar
      [builtins] Apply ES2016 conditional default timezone semantics · d31c5410
      littledan authored
      ES2016 changed the default timezone of dates to be conditional on
      whether a time is included. The semantics were a compromise approach
      based on web compatibility feedback from V8, but until now, we have been
      shipping ES5.1 default timezone semantics. This patch implements the
      new semantics, following ChakraCore and SpiderMonkey (though JSC
      implements V8's previous semantics).
      
      BUG=chromium:589858
      
      Review-Url: https://codereview.chromium.org/2648603002
      Cr-Commit-Position: refs/heads/master@{#43239}
      d31c5410
  3. 12 Jan, 2016 1 commit
  4. 08 Jan, 2016 1 commit
  5. 15 Oct, 2015 1 commit
  6. 31 Aug, 2015 1 commit
  7. 24 Jul, 2015 1 commit
  8. 23 Jun, 2015 2 commits
  9. 22 Jul, 2013 1 commit
  10. 03 Jul, 2013 1 commit
  11. 10 Sep, 2012 1 commit
  12. 09 Mar, 2012 1 commit
  13. 31 Oct, 2011 1 commit
  14. 28 Oct, 2011 1 commit
  15. 01 Jul, 2011 1 commit
  16. 16 Dec, 2010 1 commit
  17. 02 Jul, 2010 1 commit
  18. 23 Mar, 2010 2 commits
  19. 03 Mar, 2010 1 commit
  20. 16 Feb, 2009 1 commit
  21. 09 Sep, 2008 1 commit
  22. 04 Sep, 2008 1 commit
  23. 22 Aug, 2008 1 commit
    • christian.plesner.hansen's avatar
      Included mjsunit JavaScript test suite and C++ unit tests. · c42f5829
      christian.plesner.hansen authored
      In the shell sample don't print the result of executing a script, only
      evaluating expressions.
      
      Fixed issue when building samples on Windows using a shared V8
      library.  Added visibility option on Linux build which makes the
      generated library 18% smaller.
      
      Changed build system to accept multiple build modes in one build and
      generate seperate objects, libraries and executables for each mode.
      
      Removed deferred negation optimization (a * -b => -(a * b)) since this
      visibly changes operand conversion order.
      
      Improved parsing performance by introducing stack guard in preparsing.
      Without a stack guard preparsing always bails out with stack overflow.
      
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      c42f5829