Bug 1531951 - Minor improvement to type display r=jonco

Differential Revision: https://phabricator.services.mozilla.com/D46542

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Steve Fink 2019-09-30 03:57:29 +00:00
Родитель 1162b03ed0
Коммит d57610c31f
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -63,9 +63,10 @@ function str_Type(type) {
const {Kind, Type, Name, TypeFunctionArguments} = type;
if (Kind == 'Pointer')
return str_Type(Type) + "*";
else if (Kind == 'CSU') {
else if (Kind == 'CSU')
return Name;
}
else if (Kind == 'Array')
return str_Type(Type) + "[]";
return Kind;
} catch(e) {