| 779 | } |
| 780 | |
| 781 | DbgTypedValue DbgExprEvaluator::GetInt(int value) |
| 782 | { |
| 783 | DbgTypedValue dbgValue; |
| 784 | dbgValue.mType = mDbgModule->GetPrimitiveType(DbgType_i32, GetLanguage()); |
| 785 | dbgValue.mInt32 = value; |
| 786 | return dbgValue; |
| 787 | } |
| 788 | |
| 789 | DbgTypedValue DbgExprEvaluator::GetString(const StringImpl& str) |
| 790 | { |
nothing calls this directly
no test coverage detected