Browse Source

idl-api: support recursive resolving of type (in case of typekind deftype)

its not a problem at all
main
heck 2 years ago
parent
commit
f445a35020
  1. 2
      idl/idl_api.ysl2

2
idl/idl_api.ysl2

@ -90,7 +90,7 @@ def "func:idl_type_get_resolved_type" {
choose {
when "$idltypekind = 'deftype'"
result "func:idl_type_get_type_of_deftype($idltype)";
result "func:idl_type_get_resolved_type(func:idl_type_get_type_of_deftype($idltype))";
otherwise
result "$idltype";
}

Loading…
Cancel
Save