| 13092 | } |
| 13093 | |
| 13094 | __declspec(noinline) |
| 13095 | ResultType ResultToken::UnknownMemberError(ExprTokenType &aObject, int aFlags, LPCTSTR aMember) |
| 13096 | { |
| 13097 | TCHAR msg[512]; |
| 13098 | if (!aMember) |
| 13099 | aMember = (aFlags & IT_CALL) ? _T("Call") : _T("__Item"); |
| 13100 | sntprintf(msg, _countof(msg), _T("This value of type \"%s\" has no %s named \"%s\".") |
| 13101 | , TokenTypeString(aObject), (aFlags & IT_CALL) ? _T("method") : _T("property"), aMember); |
| 13102 | return Error(msg, nullptr, (aFlags & IT_CALL) ? ErrorPrototype::Method : ErrorPrototype::Property); |
| 13103 | } |
| 13104 | |
| 13105 | __declspec(noinline) |
| 13106 | ResultType ResultToken::Win32Error(DWORD aError) |
no test coverage detected