summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/externalScript.4.qml
blob: 16211aaeab41c39ede8da0db875896c1dca5b74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt 4.6

QtObject {
    property int test: external_script_func();
    property bool test2: is_a_undefined();

    // Disconnected scripts
    Script {
        source: "externalScript.js"
    }

    Script {
        source: "externalScript.2.js"
    }
}