aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/modules/broken/broken.qbs
blob: b960117cf3bc90abda85904aacf1082c81219e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import qbs

Module {
    Probe {
        id: theProbe

        property stringList broken
        property stringList fine

        configure: {
            broken = [["x"]];
            fine = ["x"]
            found = true;
        }
    }

    property stringList broken: theProbe.broken
    property stringList fine: theProbe.fine.filter(function(incl) { return incl != "y"; });
}