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

Unified Diff: test/mjsunit/debug-stepin-builtin-callback-opt.js

Issue 1502163002: [debugger] add test case for stepping into string template. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comment Created 5 years 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 | « no previous file | test/mjsunit/es6/debug-stepin-string-template.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/debug-stepin-builtin-callback-opt.js
diff --git a/test/mjsunit/debug-stepin-builtin-callback-opt.js b/test/mjsunit/debug-stepin-builtin-callback-opt.js
index 6b0039674c2bb12a21fa6e1599bb87ea96be4e4f..737bfc894631dfdf3eeede1e22ef60a231a90255 100644
--- a/test/mjsunit/debug-stepin-builtin-callback-opt.js
+++ b/test/mjsunit/debug-stepin-builtin-callback-opt.js
@@ -13,7 +13,8 @@ function listener(event, exec_state, event_data, data) {
if (event != Debug.DebugEvent.Break) return;
try {
print(event_data.sourceLineText());
- assertTrue(event_data.sourceLineText().indexOf(`Break ${break_count++}.`) > 0);
+ assertTrue(
+ event_data.sourceLineText().indexOf(`Break ${break_count++}.`) > 0);
exec_state.prepareStep(Debug.StepAction.StepIn, 1);
} catch (e) {
exception = e;
« no previous file with comments | « no previous file | test/mjsunit/es6/debug-stepin-string-template.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698