Fix detection of properties when they are only used in two way bindings

Fixes #2166
This commit is contained in:
Olivier Goffart 2023-12-18 18:50:12 +01:00
parent 7fd75a8ba0
commit 85526d772e
11 changed files with 64 additions and 6 deletions

View file

@ -62,3 +62,10 @@ export Ex3 := Rectangle {
}
}
}
export component Ex4 {
in property rot <=> rect . rotation-angle;
rect := Rectangle {}
// ^error{rotation properties can only be applied to the Image element}
}