revert typeName from getCompleteString() (breaks tests), add to function dump instead
This commit is contained in:
parent
4b1dfc56b1
commit
aa4e527781
2 changed files with 2 additions and 6 deletions
|
|
@ -216,7 +216,8 @@ void TFunction::dump(TInfoSink &infoSink, bool complete) const
|
|||
for (int i = 0; i < numParams; i++) {
|
||||
const TParameter ¶m = parameters[i];
|
||||
infoSink.debug << param.type->getCompleteString() << " "
|
||||
<< (param.name ? param.name->c_str() : "") << (i < numParams - 1 ? "," : "");
|
||||
<< (param.type->isStruct() ? "of " + param.type->getTypeName() + " " : "")
|
||||
<< (param.name ? *param.name : "") << (i < numParams - 1 ? "," : "");
|
||||
}
|
||||
|
||||
infoSink.debug << ")";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue