aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/modules/broken/broken.qbs
blob: a80547340f4852ffe2c6a8ad810e055fe319227e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"; });
}