| 268 | } |
| 269 | |
| 270 | String CeDebugger::TypeToString(const BfTypedValue& typedValue) |
| 271 | { |
| 272 | if (typedValue.mType == NULL) |
| 273 | return "null"; |
| 274 | if (typedValue.IsReadOnly()) |
| 275 | return String("readonly ") + mCeMachine->mCeModule->TypeToString(typedValue.mType); |
| 276 | return mCeMachine->mCeModule->TypeToString(typedValue.mType); |
| 277 | } |
| 278 | |
| 279 | String CeDebugger::TypeToString(BfType* type, CeTypeModKind typeModKind) |
| 280 | { |
no test coverage detected