| Index: Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp b/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
|
| index f72fb698d73af7959c6782e6cb53b0aace17eff9..f1a88298a545ab8a9a5c21b893673c239263bf36 100644
|
| --- a/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
|
| @@ -35,11 +35,11 @@
|
|
|
| namespace WebCore {
|
|
|
| -void V8JavaScriptCallFrame::evaluateWithExceptionDetailsMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| +void V8JavaScriptCallFrame::evaluateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(info.Holder());
|
| String expression = toCoreStringWithUndefinedOrNullCheck(info[0]);
|
| - v8SetReturnValue(info, impl->evaluateWithExceptionDetails(expression));
|
| + v8SetReturnValue(info, impl->evaluate(expression));
|
| }
|
|
|
| void V8JavaScriptCallFrame::restartMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
|
|