| 931 | } |
| 932 | |
| 933 | char* ParserState::AllocateString( size_t size ) |
| 934 | { |
| 935 | char* string = new char[size]; |
| 936 | m_strings.push_back( string ); |
| 937 | return string; |
| 938 | } |
| 939 | |
| 940 | void ParserState::ShowMessage( const FileLocation& location, int32_t errorCode, ... ) |
| 941 | { |
no outgoing calls
no test coverage detected