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

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

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 11 months 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
« no previous file with comments | « src/builtins/builtins.h ('k') | src/code-factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins-debug.cc
diff --git a/src/builtins/builtins-debug.cc b/src/builtins/builtins-debug.cc
index 011eba3db4515659c45ad81d32c8cded9c6f2669..936b4c97ca6311fd5d0739e2ba252d4d0c016e7f 100644
--- a/src/builtins/builtins-debug.cc
+++ b/src/builtins/builtins-debug.cc
@@ -19,8 +19,12 @@ void Builtins::Generate_Slot_DebugBreak(MacroAssembler* masm) {
DebugCodegen::IGNORE_RESULT_REGISTER);
}
-void Builtins::Generate_FrameDropper_LiveEdit(MacroAssembler* masm) {
- DebugCodegen::GenerateFrameDropperLiveEdit(masm);
+void Builtins::Generate_FrameDropperTrampoline(MacroAssembler* masm) {
+ DebugCodegen::GenerateFrameDropperTrampoline(masm);
+}
+
+void Builtins::Generate_HandleDebuggerStatement(MacroAssembler* masm) {
+ DebugCodegen::GenerateHandleDebuggerStatement(masm);
}
} // namespace internal
« no previous file with comments | « src/builtins/builtins.h ('k') | src/code-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698