mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
A lookup tag with no type attribute would crash the decompiler, even if that was valid. This wasn't caught by the tests since blueprint never generates such XML. Also fixed a bug in the tests that caused decompiler-only tests not to run.
7 lines
119 B
Text
7 lines
119 B
Text
using Gtk 4.0;
|
|
|
|
template ListItem {
|
|
child: Label {
|
|
label: bind template.item as <$RecentObject>.filename;
|
|
};
|
|
}
|