summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/scriptErrors.qml
blob: 3fb8ff79332fe1c78ac28217bbaa0a7d14b7b21f (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

Object {
    Script { source: "scriptErrors.js" }
    Script { function getValue() { a = 10; return 0; } }

    property int x: a.value
    property int y: getValue();
}