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

Unified Diff: src/js/generator.js

Issue 1404783002: Debugger: allow stepping into resolver from Promise constructor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/js/collection.js ('k') | src/js/macros.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/generator.js
diff --git a/src/js/generator.js b/src/js/generator.js
index 56579c59d40b65bc04356619240142b242536db5..6e5a533c1b494410e0fc9516a3349a83d244a146 100644
--- a/src/js/generator.js
+++ b/src/js/generator.js
@@ -33,7 +33,7 @@ function GeneratorObjectNext(value) {
var continuation = %GeneratorGetContinuation(this);
if (continuation > 0) {
// Generator is suspended.
- if (DEBUG_IS_ACTIVE) %DebugPrepareStepInIfStepping(this);
+ DEBUG_PREPARE_STEP_IN_IF_STEPPING(this);
try {
return %_GeneratorNext(this, value);
} catch (e) {
« no previous file with comments | « src/js/collection.js ('k') | src/js/macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698