mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Add errors for duplicate properties and blocks
This commit is contained in:
parent
f18c8b7a2d
commit
824476bda1
12 changed files with 122 additions and 0 deletions
45
tests/sample_errors/duplicates.blp
Normal file
45
tests/sample_errors/duplicates.blp
Normal file
|
@ -0,0 +1,45 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Label {
|
||||
visible: true;
|
||||
visible: false;
|
||||
|
||||
styles [""]
|
||||
styles [""]
|
||||
|
||||
accessibility {
|
||||
label: "label";
|
||||
label: "label";
|
||||
}
|
||||
accessibility {}
|
||||
}
|
||||
|
||||
FileFilter {
|
||||
suffixes []
|
||||
patterns []
|
||||
mime-types []
|
||||
suffixes []
|
||||
patterns []
|
||||
mime-types []
|
||||
}
|
||||
|
||||
ComboBoxText {
|
||||
layout {
|
||||
orientation: vertical;
|
||||
orientation: vertical;
|
||||
}
|
||||
layout {}
|
||||
|
||||
items []
|
||||
items []
|
||||
}
|
||||
|
||||
SizeGroup {
|
||||
widgets []
|
||||
widgets []
|
||||
}
|
||||
|
||||
StringList {
|
||||
strings []
|
||||
strings []
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue