validation: Writable/construct-only properties

Add two new errors, one for non-writable properties and another for
binding construct-only properties.
This commit is contained in:
James Westman 2022-04-28 22:42:09 -05:00
parent 3b39e0d541
commit f78478bea1
5 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,6 @@
using Gtk 4.0;
ComboBox combo_box {
has-entry: bind combo_box.visible;
scale-factor: 2;
}

View file

@ -0,0 +1,2 @@
4,14,4,ComboBox.has-entry can't be bound because it is construct-only
5,3,12,Widget.scale-factor is not writable