aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/dependencyFinder/test1.qbs
blob: dd0e11325c49ef2811f4c698916a2bec5c041c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Module {
    includePaths: foo + abc.def
    foo: bar

    car: {
        var x = 12
        x = 13
        var aaa = function aa(x1, x2) {
            function bbb() { bbb() }
            x = x1 + x2 + x2.def
            aa(x1, x2)
            bbb();
        }
        return aaa(x, includePaths)
    }
}