summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/inspector/resources/loop-statements.js
blob: cbb4e0d28db7fd3da02763ef1b6157039b506fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var i;
var a;

function initialize()
{
    i = false;
}

function condition()
{
    return !i;
}

function increment()
{
    i = !i;
}

function statement()
{
    a = i;
}