Browse Source
Detect attempts to declare two object members that would result in the same C member name, by keying the 'seen' dictionary off of the C name rather than the qapi name. It also requires passing info through the check_clash() methods. This addresses a TODO and fixes the previously-broken args-name-clash test. The resulting error message demonstrates the utility of the .describe() method added previously. No change to generated code. Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1447836791-369-17-git-send-email-eblake@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>pull/33/head
committed by
Markus Armbruster
5 changed files with 23 additions and 22 deletions
@ -0,0 +1 @@ |
|||
tests/qapi-schema/args-name-clash.json:4: 'a_b' (parameter of oops) collides with 'a-b' (parameter of oops) |
|||
@ -1 +1 @@ |
|||
0 |
|||
1 |
|||
|
|||
@ -1,5 +1,4 @@ |
|||
# C member name collision |
|||
# FIXME - This parses, but fails to compile, because the C struct is given |
|||
# two 'a_b' members. Either reject this at parse time, or munge the C names |
|||
# to avoid the collision. |
|||
# Reject members that clash when mapped to C names (we would have two 'a_b' |
|||
# members). |
|||
{ 'command': 'oops', 'data': { 'a-b': 'str', 'a_b': 'str' } } |
|||
|
|||
@ -1,6 +0,0 @@ |
|||
object :empty |
|||
object :obj-oops-arg |
|||
member a-b: str optional=False |
|||
member a_b: str optional=False |
|||
command oops :obj-oops-arg -> None |
|||
gen=True success_response=True |
|||
Loading…
Reference in new issue