зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
1162b03ed0
Коммит
d57610c31f
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче