1. 17 Oct, 2016 1 commit
    • marja's avatar
      Fix mjsunit oddities (new try). · e27ef0a6
      marja authored
      1) assertInstanceOf(o, Foo, Bar) used to produce this error message:
      
      Failure: expected <o> is not an instance of <Foo> but of < Bar>> found <undefined>
      
      Fixed:
      
      Failure: <o> is not an instance of <Foo> but of <Bar>
      
      2) assertDoesNotThrow("throw 1") used to produce this error message:
      
      Failure: expected <threw an exception: > found <1>
      
      Fixed:
      
      Failure: threw an exception: 1
      
      3) assertDoesNotThrow("...", SomeError) was not doing what you'd
      think it does, so removed the last parameter.
      
      BUG=
      
      Review-Url: https://codereview.chromium.org/2424743003
      Cr-Commit-Position: refs/heads/master@{#40347}
      e27ef0a6
  2. 15 Aug, 2015 1 commit
    • caitpotter88's avatar
      [parser] make kInvalidLhsInFor a SyntaxError · 9b15445e
      caitpotter88 authored
      Second item in section 13.7.5.1 states that the error should be a
      SyntaxError, when previously CheckAndRewriteReferenceExpression
      would always emit a ReferenceError.
      
      BUG=v8:4373
      R=adamk, rossberg
      LOG=N
      CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel
      
      Review URL: https://codereview.chromium.org/1292393002
      
      Cr-Commit-Position: refs/heads/master@{#30184}
      9b15445e
  3. 02 Apr, 2014 1 commit
  4. 17 Mar, 2014 1 commit
  5. 30 Sep, 2009 1 commit
  6. 09 Sep, 2008 1 commit
  7. 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
  8. 03 Jul, 2008 1 commit