summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp')
-rw-r--r--WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp b/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp
index afbdf5d..080f730 100644
--- a/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp
+++ b/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp
@@ -85,6 +85,12 @@ JSValue JSJavaScriptCallFrame::scopeChain(ExecState* exec) const
return constructArray(exec, list);
}
+JSValue JSJavaScriptCallFrame::scopeType(ExecState*, const ArgList&)
+{
+ // FIXME(37663): implement this method the way it's done in the InjectedScipt.js
+ return jsNull();
+}
+
} // namespace WebCore
#endif // ENABLE(JAVASCRIPT_DEBUGGER)