| 72 | int ArrayRank{0}; |
| 73 | |
| 74 | inline std::string GetRealType() const |
| 75 | { |
| 76 | if (ArrayRank > 0) |
| 77 | return "Array::Ptr"; |
| 78 | |
| 79 | if (IsName) |
| 80 | return "String"; |
| 81 | |
| 82 | return TypeName; |
| 83 | } |
| 84 | |
| 85 | inline std::string GetArgumentType() const |
| 86 | { |
no outgoing calls
no test coverage detected