| 13122 | } |
| 13123 | |
| 13124 | __declspec(noinline) |
| 13125 | ResultType ResultToken::TypeError(LPCTSTR aExpectedType, ExprTokenType &aActualValue) |
| 13126 | { |
| 13127 | TCHAR number_buf[MAX_NUMBER_SIZE]; |
| 13128 | LPTSTR actual_type, value_as_string; |
| 13129 | TokenTypeAndValue(aActualValue, actual_type, value_as_string, number_buf); |
| 13130 | return TypeError(aExpectedType, actual_type, value_as_string); |
| 13131 | } |
| 13132 | |
| 13133 | ResultType ResultToken::TypeError(LPCTSTR aExpectedType, LPCTSTR aActualType, LPTSTR aExtraInfo) |
| 13134 | { |
no test coverage detected