blueprint-compiler/tests/samples/flags.blp
James Westman bebe784d1d
Fix type check for flags when only one is present
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
2022-03-02 13:57:30 -06:00

10 lines
133 B
Text

using Gtk 4.0;
using Gio 2.0;
Gio.Application {
flags: is_service | handles_open;
}
EventControllerScroll {
flags: vertical;
}