Add test for bug with typeof in imported js files.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / typeOf.qml
1 import QtQuick 2.0
2 import "typeOf.js" as TypeOf
3
4 QtObject {
5     property string test1
6     property string test2
7     property string test3
8     property string test4
9     property string test5
10     property string test6
11     property string test7
12     property string test8
13     property string test9
14
15     Component.onCompleted: {
16         test1 = TypeOf.test1
17         test2 = TypeOf.test2
18         test3 = TypeOf.test3
19         test4 = TypeOf.test4
20         test5 = TypeOf.test5
21         test6 = TypeOf.test6
22         test7 = TypeOf.test7
23         test8 = TypeOf.test8
24         test9 = TypeOf.test9
25     }
26 }