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

Unified Diff: test/debugger/regress/regress-5901-2.js

Issue 2664793002: [debugger] account for inlined functions when stepping. (Closed)
Patch Set: comment addressed 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 | « test/debugger/regress/regress-5901-1.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/regress/regress-5901-2.js
diff --git a/test/debugger/regress/regress-5901-2.js b/test/debugger/regress/regress-5901-2.js
new file mode 100644
index 0000000000000000000000000000000000000000..becad1bb071d1f084a9676c76417eeece9645f40
--- /dev/null
+++ b/test/debugger/regress/regress-5901-2.js
@@ -0,0 +1,45 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+function f() {
+ debugger;
+ return 1;
+}
+
+function g() {
+ return f();
+} // Break
+
+function h() {
+ return g();
+}
+
+h();
+h();
+
+var Debug = debug.Debug;
+var step_count = 0;
+var exception = null;
+
+function listener(event, exec_state, event_data, data) {
+ if (event != Debug.DebugEvent.Break) return;
+ try {
+ if (step_count == 0) {
+ exec_state.prepareStep(Debug.StepAction.StepOut);
+ } else {
+ assertTrue(exec_state.frame().sourceLineText().includes('Break'));
+ }
+ step_count++;
+ } catch (e) {
+ exception = e;
+ print(e);
+ }
+}
+
+Debug.setListener(listener);
+% OptimizeFunctionOnNextCall(h);
+h();
+Debug.setListener(null);
+assertNull(exception);
+assertEquals(2, step_count);
« no previous file with comments | « test/debugger/regress/regress-5901-1.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698