mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
When only one flag is specified, it's parsed as an IdentValue rather than a FlagsValue, so IdentValue needs to be able to type check flags (aka bitfields) properly. Fixes #47
10 lines
133 B
Text
10 lines
133 B
Text
using Gtk 4.0;
|
|
using Gio 2.0;
|
|
|
|
Gio.Application {
|
|
flags: is_service | handles_open;
|
|
}
|
|
|
|
EventControllerScroll {
|
|
flags: vertical;
|
|
}
|