diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-08-03 10:33:16 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-08-03 10:33:16 -0700 |
commit | a6bc68a83beda7609330e525a73b7b227a1b9207 (patch) | |
tree | 062a3379d6db01815268a2278c6f5ed8b9f6298e /deps/v8/test/mjsunit/debug-conditional-breakpoints.js | |
parent | 4b19bd28967101b7afed3819cf595d4f04a1b11e (diff) | |
download | node-new-a6bc68a83beda7609330e525a73b7b227a1b9207.tar.gz |
Upgrade V8 to 2.3.4
Diffstat (limited to 'deps/v8/test/mjsunit/debug-conditional-breakpoints.js')
-rw-r--r-- | deps/v8/test/mjsunit/debug-conditional-breakpoints.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/v8/test/mjsunit/debug-conditional-breakpoints.js b/deps/v8/test/mjsunit/debug-conditional-breakpoints.js index bd4cdd150c..6248437300 100644 --- a/deps/v8/test/mjsunit/debug-conditional-breakpoints.js +++ b/deps/v8/test/mjsunit/debug-conditional-breakpoints.js @@ -136,7 +136,7 @@ Debug.clearBreakPoint(bp); // Conditional breakpoint which checks a local variable. break_point_hit_count = 0; -bp = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); +bp = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); for (var i = 0; i < 10; i++) { g(); } @@ -146,8 +146,8 @@ Debug.clearBreakPoint(bp); // Multiple conditional breakpoint which the same condition. break_point_hit_count = 0; -bp1 = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); -bp2 = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); +bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); +bp2 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); for (var i = 0; i < 10; i++) { g(); } @@ -159,8 +159,8 @@ Debug.clearBreakPoint(bp2); // Multiple conditional breakpoint which different conditions. break_point_hit_count = 0; -bp1 = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); -bp2 = Debug.setBreakPoint(h, 0, 23, '(a + 1) % 2 == 0'); +bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); +bp2 = Debug.setBreakPoint(h, 0, 22, '(a + 1) % 2 == 0'); for (var i = 0; i < 10; i++) { g(); } |