13 lines
188 B
QML
13 lines
188 B
QML
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
property var foo: new Error("bar")
|
||
|
property int aaa: 12
|
||
|
|
||
|
function ouch() {
|
||
|
aaa = 13;
|
||
|
throw new Error("ouch")
|
||
|
aaa = 25;
|
||
|
}
|
||
|
}
|