aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.formatted.js
blob: 99db6fb3727ce0d26d0f7c501e884b43b358139c (plain)
1
2
3
4
5
6
7
8
9
var l = function () {
    var nl = function () {
        if (true) {
            console.log("true");
        } else {
            console.log("false");
        }
    };
};