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

Side by Side Diff: test/mjsunit/bugs/bug-86.js

Issue 4081: Various test-related changes. (Closed)
Patch Set: Created 12 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 unified diff | Download patch
« no previous file with comments | « samples/shell.cc ('k') | test/mjsunit/bugs/bug-87.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 var aList = [1, 2, 3];
2 var loopCount = 0;
3 var leftThroughFinally = false;
4 for (x in aList) {
5 leftThroughFinally = false;
6 try {
7 throw "ex1";
8 } catch(er1) {
9 loopCount += 1;
10 } finally {
11 enteredFinally = true;
12 continue;
13 }
14 leftThroughFinally = false;
15 }
16 assertEquals(loopCount, 3);
17 assertTrue(enteredFinally);
OLDNEW
« no previous file with comments | « samples/shell.cc ('k') | test/mjsunit/bugs/bug-87.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698