mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Use <> instead of () for casts & typeof
This makes it clearer that they aren't functions, and it eliminates syntactic ambiguity with closure expressions.
This commit is contained in:
parent
d6bd282e58
commit
02796fd830
10 changed files with 66 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Label my-label {
|
||||
label: bind ($my-closure(my-label.margin-bottom)) as (string);
|
||||
label: bind ($my-closure(my-label.margin-bottom)) as <string>;
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Label {
|
||||
label: bind $my-closure (true, 10, "Hello") as (string);
|
||||
label: bind $my-closure (true, 10, "Hello") as <string>;
|
||||
}
|
|
@ -5,5 +5,5 @@ Overlay {
|
|||
}
|
||||
|
||||
Label {
|
||||
label: bind (label.parent) as (Overlay).child as (Label).label;
|
||||
label: bind (label.parent) as <Overlay>.child as <Label>.label;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
template MyTemplate : Box {
|
||||
prop1: bind MyTemplate.prop2 as ($MyObject).prop3;
|
||||
prop1: bind MyTemplate.prop2 as <$MyObject>.prop3;
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
template MyTemplate : $MyParentClass {
|
||||
prop1: bind MyTemplate.prop2 as ($MyObject).prop3;
|
||||
prop1: bind MyTemplate.prop2 as <$MyObject>.prop3;
|
||||
}
|
|
@ -3,9 +3,9 @@ using GObject 2.0;
|
|||
using Gio 2.0;
|
||||
|
||||
Gio.ListStore {
|
||||
item-type: typeof(GObject.Object);
|
||||
item-type: typeof<GObject.Object>;
|
||||
}
|
||||
|
||||
Gio.ListStore {
|
||||
item-type: typeof($MyObject);
|
||||
item-type: typeof<$MyObject>;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue