Reviewers: erik.corry, Description: Fix the debug build.
Please review this at http://codereview.chromium.org/1658 Affected files: M src/runtime.cc Index: src/runtime.cc =================================================================== --- src/runtime.cc (revision 224) +++ src/runtime.cc (working copy) @@ -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 -~----------~----~----~----~------~----~------~--~---
