1. 02 Aug, 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. 15 Oct, 2015 1 commit
  4. 24 Jul, 2015 1 commit
  5. 23 Jul, 2015 1 commit
    • hichris123's avatar
      Fix check for a date with a 24th hour · ea056cbf
      hichris123 authored
      According to the ECMA spec, a 24th hour is allowed if the minutes, seconds, and milliseconds are all zero (i.e. it's midnight). Previously, we parsed the date correctly, however, we failed to account in all checks for the possibility of a 24th hour. This CL changes the check to allow a 24th hour if it's exactly midnight.
      
      BUG=chromium:174609
      LOG=Y
      
      Review URL: https://codereview.chromium.org/1240093005
      
      Cr-Commit-Position: refs/heads/master@{#29816}
      ea056cbf
  6. 13 Jun, 2012 1 commit
  7. 01 Sep, 2011 1 commit
  8. 01 Jul, 2011 1 commit
  9. 03 May, 2010 1 commit
  10. 24 Aug, 2009 1 commit
  11. 09 Jul, 2009 1 commit
  12. 16 Jun, 2009 1 commit
  13. 17 Mar, 2009 1 commit
  14. 09 Sep, 2008 1 commit
  15. 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