Add Adw.Breakpoint custom syntax

This commit is contained in:
James Westman 2023-04-25 19:43:22 -05:00
parent aafebf0dfb
commit 8fcd08c835
12 changed files with 264 additions and 11 deletions

View file

@ -0,0 +1,12 @@
using Gtk 4.0;
using Adw 1;
Label label {}
Adw.Breakpoint {
setters {
label.foo: "bar";
not_an_object.visible: true;
label.foo: "baz";
}
}

View file

@ -0,0 +1,4 @@
8,11,3,Class Gtk.Label does not have a property called foo
9,5,13,Could not find object with ID not_an_object
10,11,3,Class Gtk.Label does not have a property called foo
10,5,17,Duplicate setter for label.foo