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

Side by Side Diff: content/browser/debugger/manual_tests/resources/loop-statements.js

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 var i; 1 var i;
2 var a; 2 var a;
3 3
4 function initialize() 4 function initialize()
5 { 5 {
6 i = false; 6 i = false;
7 } 7 }
8 8
9 function condition() 9 function condition()
10 { 10 {
11 return !i; 11 return !i;
12 } 12 }
13 13
14 function increment() 14 function increment()
15 { 15 {
16 i = !i; 16 i = !i;
17 } 17 }
18 18
19 function statement() 19 function statement()
20 { 20 {
21 a = i; 21 a = i;
22 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698