1. 07 Nov, 2014 1 commit
    • marja@chromium.org's avatar
      Scanner: disallow unicode escapes in regexp flags. · 2b026851
      marja@chromium.org authored
      The spec explicitly forbids them. V8 never handled them properly either, just
      the Scanner accepted them (it had code to add them literally to the
      LiteralBuffer) and later on, Regexp constructor disallowed them.
      
      According to the spec, unicode escapes in regexp flags should be an early error
      ("It is a Syntax Error if IdentifierPart contains a Unicode escape sequence.").
      
      Note that Scanner is still more relaxed about regexp flags than the
      spec. Especially, it accepts any identifier parts (not just a small set of
      letters) and doesn't check for duplicates.
      
      R=rossberg@chromium.org
      
      Review URL: https://codereview.chromium.org/700373003
      
      Cr-Commit-Position: refs/heads/master@{#25215}
      git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25215 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      2b026851
  2. 06 Jul, 2012 1 commit
  3. 14 Feb, 2012 1 commit
  4. 13 Jan, 2012 1 commit
  5. 27 Nov, 2009 1 commit
  6. 23 Oct, 2009 1 commit
  7. 20 Oct, 2009 1 commit
  8. 04 Mar, 2009 1 commit
  9. 26 Sep, 2008 1 commit
  10. 09 Sep, 2008 1 commit
  11. 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
  12. 03 Jul, 2008 1 commit