-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for "reuseAliases" property for <message> and <interface>.
- Loading branch information
Showing
5 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schema name="Schema18" endian="big"> | ||
<description> | ||
Testing reuseAleses property | ||
</description> | ||
<interface name="I1"> | ||
<fields> | ||
<int name="F1" type="uint8" /> | ||
<int name="F2" type="uint8" /> | ||
</fields> | ||
<alias name="A1" field="$F1" /> | ||
</interface> | ||
|
||
<interface name="I2" reuse="I1" reuseAliases="false" /> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schema name="Schema19" endian="big" version="5"> | ||
<message name="Msg1" id="1"> | ||
<fields> | ||
<int name="F1" type="uint8" deprecated="4" removed="true"/> | ||
<int name="F2" type="uint8" /> | ||
</fields> | ||
<alias name="A1" field="$F1" /> | ||
<alias name="A2" field="$F2" /> | ||
</message> | ||
|
||
<message name="Msg2" id="2" reuse="Msg1" reuseAliases="false" /> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters