| 234 | } |
| 235 | |
| 236 | String CeEvaluationContext::GetErrorStr() |
| 237 | { |
| 238 | if (mPassInstance == NULL) |
| 239 | return ""; |
| 240 | String errorStr = mPassInstance->mErrors[0]->mError; |
| 241 | if (mExprNode != NULL) |
| 242 | { |
| 243 | errorStr += ": "; |
| 244 | errorStr += mExprNode->ToString(); |
| 245 | } |
| 246 | return errorStr; |
| 247 | } |
| 248 | |
| 249 | ////////////////////////////////////////////////////////////////////////// |
| 250 |
no test coverage detected