Revision: 3311 Author: [email protected] Date: Mon Nov 16 08:58:09 2009 Log: Fix some presubmit errors.
[email protected] Review URL: http://codereview.chromium.org/400001 http://code.google.com/p/v8/source/detail?r=3311 Modified: /branches/bleeding_edge/src/top.cc /branches/bleeding_edge/test/cctest/test-debug.cc ======================================= --- /branches/bleeding_edge/src/top.cc Mon Nov 16 06:41:55 2009 +++ /branches/bleeding_edge/src/top.cc Mon Nov 16 08:58:09 2009 @@ -941,7 +941,7 @@ } } } -#endif // ENABLE_DEBUGGER_SUPPORT +#endif // ENABLE_DEBUGGER_SUPPORT if (it.done()) return Handle<Context>::null(); JavaScriptFrame* frame = it.frame(); Context* context = Context::cast(frame->context()); ======================================= --- /branches/bleeding_edge/test/cctest/test-debug.cc Mon Nov 16 06:41:55 2009 +++ /branches/bleeding_edge/test/cctest/test-debug.cc Mon Nov 16 08:58:09 2009 @@ -5616,7 +5616,7 @@ static v8::Handle<v8::Value> NamedGetterWithCallingContextCheck( v8::Local<v8::String> name, const v8::AccessorInfo& info) { - CHECK(strcmp(*v8::String::AsciiValue(name), "a") == 0); + CHECK_EQ(0, strcmp(*v8::String::AsciiValue(name), "a")); v8::Handle<v8::Context> current = v8::Context::GetCurrent(); CHECK(current == debugee_context); CHECK(current != debugger_context); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
