slint/sixtyfps_compiler/tests/basic/animate.60
Olivier Goffart c30aa370f3 Parse units
They currently have no real meaning
2020-07-14 11:35:45 +02:00

23 lines
347 B
Text

SuperSimple := Rectangle {
animate x {
duration: 1000ms;
}
animate x {
// ^error{Duplicated animation}
duration: 1000ms;
}
animate y {
nonexistent: 42;
// ^error{Unknown property nonexistent}
}
animate text {
// ^error{'text' is not an animatable property}
}
}