mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Change the way values work
Change the parsing for values to make them more reusable, in particular for when I implement extensions.
This commit is contained in:
parent
6938267952
commit
1df46b5a06
30 changed files with 707 additions and 291 deletions
|
@ -1 +1 @@
|
|||
4,3,21,Cannot assign Gtk.Label to Gtk.Adjustment
|
||||
4,15,8,Cannot assign Gtk.Label to Gtk.Adjustment
|
||||
|
|
11
tests/sample_errors/warn_old_bind.blp
Normal file
11
tests/sample_errors/warn_old_bind.blp
Normal file
|
@ -0,0 +1,11 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Box {
|
||||
visible: bind box2.visible inverted;
|
||||
orientation: bind box2.orientation;
|
||||
spacing: bind box2.spacing no-sync-create;
|
||||
}
|
||||
|
||||
Box box2 {
|
||||
spacing: 6;
|
||||
}
|
2
tests/sample_errors/warn_old_bind.err
Normal file
2
tests/sample_errors/warn_old_bind.err
Normal file
|
@ -0,0 +1,2 @@
|
|||
4,12,4,Use 'bind-property', introduced in blueprint 0.8.0, to use binding flags
|
||||
6,12,4,Use 'bind-property', introduced in blueprint 0.8.0, to use binding flags
|
Loading…
Add table
Add a link
Reference in a new issue