blueprint-compiler/tests/samples/typeof.blp
James Westman c0c40b1577
language: Support boxed types and GType
- Add support for type checking boxed types
- Remove support for converting string and number literals
- Add the `typeof()` operator for GType literals
2022-10-06 13:03:33 -05:00

11 lines
No EOL
155 B
Text

using Gtk 4.0;
using GObject 2.0;
using Gio 2.0;
Gio.ListStore {
item-type: typeof(GObject.Object);
}
Gio.ListStore {
item-type: typeof(.MyObject);
}