aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/jsimport/importPragmaLibrary.js
blob: c746fef14b8f041b04497a3b4e5eb9b420e302e2 (plain)
1
2
3
4
5
6
7
8
9
.pragma library

var i = 4;

// .pragma library, so should be callable from multiple .qml with shared i.
function importIncrementedValue() {
    i = i + 1;
    return i;
}