Author: [EMAIL PROTECTED]
Date: Tue Sep  9 01:06:27 2008
New Revision: 228

Modified:
    branches/bleeding_edge/src/runtime.cc

Log:
Fix the debug build.

Modified: branches/bleeding_edge/src/runtime.cc
==============================================================================
--- branches/bleeding_edge/src/runtime.cc       (original)
+++ branches/bleeding_edge/src/runtime.cc       Tue Sep  9 01:06:27 2008
@@ -3447,7 +3447,7 @@
  // array.  Returns true if the element was pushed on the stack and
  // false otherwise.
  static Object* Runtime_PushIfAbsent(Arguments args) {
-  ASSERT(args.length == 2);
+  ASSERT(args.length() == 2);
    CONVERT_CHECKED(JSArray, array, args[0]);
    CONVERT_CHECKED(JSArray, element, args[1]);
    CHECK(array->HasFastElements());

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to