| 938 | } |
| 939 | |
| 940 | void ParserState::ShowMessage( const FileLocation& location, int32_t errorCode, ... ) |
| 941 | { |
| 942 | va_list args; |
| 943 | va_start( args, errorCode ); |
| 944 | ShowMessageImpl( location, errorCode, args ); |
| 945 | } |
| 946 | |
| 947 | void ParserState::ShowMessage( const ScannerToken& token, int32_t errorCode, ... ) |
| 948 | { |
no outgoing calls
no test coverage detected