Commit a3e66d2d authored by yurys@chromium.org's avatar yurys@chromium.org

Fix lint errors

TBR=mnaganov
Review URL: http://codereview.chromium.org/3525014

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5587 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent eb24a86e
...@@ -392,7 +392,7 @@ Handle<JSArray> Top::CaptureCurrentStackTrace( ...@@ -392,7 +392,7 @@ Handle<JSArray> Top::CaptureCurrentStackTrace(
Handle<JSValue> script_wrapper = GetScriptWrapper(Handle<Script>(script)); Handle<JSValue> script_wrapper = GetScriptWrapper(Handle<Script>(script));
Handle<Object> property = GetProperty(script_wrapper, method_name); Handle<Object> property = GetProperty(script_wrapper, method_name);
ASSERT(property->IsJSFunction()); ASSERT(property->IsJSFunction());
Handle<JSFunction> method = Handle<JSFunction>::cast(property); Handle<JSFunction> method = Handle<JSFunction>::cast(property);
bool caught_exception; bool caught_exception;
Handle<Object> result = Execution::TryCall(method, script_wrapper, 0, Handle<Object> result = Execution::TryCall(method, script_wrapper, 0,
NULL, &caught_exception); NULL, &caught_exception);
......
...@@ -10565,7 +10565,7 @@ v8::Handle<Value> AnalyzeStackOfEvalWithSourceURL(const v8::Arguments& args) { ...@@ -10565,7 +10565,7 @@ v8::Handle<Value> AnalyzeStackOfEvalWithSourceURL(const v8::Arguments& args) {
v8::Handle<v8::String> name = v8::Handle<v8::String> name =
stackTrace->GetFrame(i)->GetScriptNameOrSourceURL(); stackTrace->GetFrame(i)->GetScriptNameOrSourceURL();
CHECK(!name.IsEmpty()); CHECK(!name.IsEmpty());
CHECK_EQ(url, name); CHECK_EQ(url, name);
} }
return v8::Undefined(); return v8::Undefined();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment