Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: src/runtime/runtime-debug.cc

Issue 2503293002: [debug-wrapper] LiveEdit, frame.restart(), breakpoints (Closed)
Patch Set: Update .status Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/runtime/runtime-debug.cc
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc
index 824ea92a0f7baee758f41b1eec9a529e9dc8a801..03731ba56cb12ccff81b57aa025557ae2788da99 100644
--- a/src/runtime/runtime-debug.cc
+++ b/src/runtime/runtime-debug.cc
@@ -1529,6 +1529,20 @@ RUNTIME_FUNCTION(Runtime_GetDebugContext) {
return context->global_proxy();
}
+RUNTIME_FUNCTION(Runtime_GetLiveEditAPIObject) {
+ HandleScope scope(isolate);
+ DCHECK(args.length() == 0);
+
+ Handle<Context> context;
+ {
+ DebugScope debug_scope(isolate->debug());
+ CHECK(!debug_scope.failed());
+ context = isolate->debug()->GetDebugContext();
+ CHECK(!context.is_null());
+ }
+
+ return context->native_context()->debug_live_edit();
+}
// Performs a GC.
// Presently, it only does a full GC.

Powered by Google App Engine
This is Rietveld 408576698