summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/coercion/example.qml
blob: 7b459504a4141a556ef6344ed5ce8ab219d36247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import People 1.0

// ![0]
BirthdayParty {
    host: Boy {
        name: "Bob Jones"
        shoeSize: 12
    }
    guests: [
        Boy { name: "Leo Hodges" },
        Boy { name: "Jack Smith" },
        Girl { name: "Anne Brown" }
    ]
}
// ![0]