aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/threeFunctions.formattedFuncSpacing.js
blob: 592db7a02bb90bccb2e858aa028388c53b859920 (plain)
1
2
3
4
5
6
7
8
9
10
11
function one() {
    var a=1;
}

function two(a, b) {
    console.log(a,b);
}

function three(c) {
    var a=c;
}