aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/lambdaWithIfElse.formatted.js
blob: 3bc7f683c49408c527d81acbaf91b9c760f3ca35 (plain)
1
2
3
4
5
6
7
var f = function () {
    if (true) {
        console.log("true");
    } else {
        console.log("false");
    }
};