Index: Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp b/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp |
index 66879b02b6ec9a60beacdf25766f2ebea7f2ce9a..6cf8f156914488d549bd630cc09353b10443e9a5 100644 |
--- a/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp |
+++ b/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp |
@@ -333,12 +333,7 @@ void V8InjectedScriptHost::evaluateMethodCustom(const v8::FunctionCallbackInfo<v |
} |
ASSERT(!isolate->GetCurrentContext().IsEmpty()); |
- v8::TryCatch tryCatch; |
v8::Handle<v8::Value> result = V8ScriptRunner::compileAndRunInternalScript(expression, info.GetIsolate()); |
- if (tryCatch.HasCaught()) { |
- v8SetReturnValue(info, tryCatch.ReThrow()); |
vsevik
2014/05/20 08:23:10
Let's move on with SetVerbose instead.
|
- return; |
- } |
v8SetReturnValue(info, result); |
} |