mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Added more informational mouseovers
This commit is contained in:
parent
9499c727ab
commit
d11c79e43e
7 changed files with 183 additions and 13 deletions
|
@ -9446,6 +9446,14 @@ String BfModule::MethodToString(BfMethodInstance* methodInst, BfMethodNameFlags
|
|||
|
||||
methodName += " ";
|
||||
methodName += methodInst->GetParamName(paramIdx);
|
||||
|
||||
auto paramInitializer = methodInst->GetParamInitializer(paramIdx);
|
||||
if (paramInitializer != NULL)
|
||||
{
|
||||
methodName += " = ";
|
||||
methodName += paramInitializer->ToString();
|
||||
}
|
||||
|
||||
dispParamIdx++;
|
||||
}
|
||||
methodName += ")";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue