#include "method.h" #include "type.h" std::string Method::GetDescription(bool showOwnerType) const{ std::stringstream ss; if (isStatic) ss << "static "; ss << returnType.ToString() << " "; if (showOwnerType && ownerType) ss << ownerType->GetName() << "::"; ss << name << "("; for (int i = 0, n = paramTypes.size(); i