aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/twoFunctions.formatted.js
blob: b7414de0533c0be630a83da422fd627437267b7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function one() {
    var a = 1;
    if (a === true) {
        a = 5;
    }
}

function two(a, b) {
    for (; b < 5; ++b) {
        a = a * b;
    }
}