Index: src/runtime/runtime-debug.cc |
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc |
index 75d65941138be250e95a2ad90e395dd3ab0b6420..0195239b1dc1ae98503d376e2cbcfafaef2b52e3 100644 |
--- a/src/runtime/runtime-debug.cc |
+++ b/src/runtime/runtime-debug.cc |
@@ -1486,6 +1486,16 @@ RUNTIME_FUNCTION(Runtime_FunctionGetInferredName) { |
} |
+RUNTIME_FUNCTION(Runtime_FunctionGetDebugName) { |
+ HandleScope scope(isolate); |
+ DCHECK(args.length() == 1); |
+ |
+ CONVERT_ARG_HANDLE_CHECKED(JSFunction, f, 0); |
+ Handle<Object> name = JSFunction::GetDebugName(f); |
+ return *name; |
+} |
+ |
+ |
// A testing entry. Returns statement position which is the closest to |
// source_position. |
RUNTIME_FUNCTION(Runtime_GetFunctionCodePositionFromSource) { |