summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/coercion/example.qml
blob: 8bcb45a66135b039f488f371268b618e45aa08de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ![0]
BirthdayParty {
    celebrant: Boy {
        name: "Bob Jones"
        shoeSize: 12
    }
    guests: [
        Boy { name: "Joan Hodges" },
        Boy { name: "Jack Smith" },
        Girl { name: "Anne Brown" }
    ]
}
// ![0]