Index: test/mjsunit/es6/generators-relocation.js |
diff --git a/test/mjsunit/es6/generators-relocation.js b/test/mjsunit/es6/generators-relocation.js |
index 6babb148bec84d2c5581d16783e000644517dd74..2636f52d7b9eeb46a18a4c607324e04f53a3745e 100644 |
--- a/test/mjsunit/es6/generators-relocation.js |
+++ b/test/mjsunit/es6/generators-relocation.js |
@@ -25,13 +25,13 @@ function RunTest(formals_and_body, args, value1, value2) { |
// Advance to the first yield. |
assertIteratorResult(value1, false, obj.next()); |
- // Add a breakpoint on line 3 (the second yield). |
- var bp = Debug.setBreakPoint(gen, 3); |
- |
// Enable the debugger, which should force recompilation of the generator |
// function and relocation of the suspended generator activation. |
Debug.setListener(listener); |
+ // Add a breakpoint on line 3 (the second yield). |
+ var bp = Debug.setBreakPoint(gen, 3); |
+ |
// Check that the generator resumes and suspends properly. |
assertIteratorResult(value2, false, obj.next()); |