| 336 | } |
| 337 | |
| 338 | void ParseEnum(const char* data, size_t length) { |
| 339 | TEnumContext enumContext(CurrentEnum); |
| 340 | TMemoryInput in(data, length); |
| 341 | TCppSaxParser parser(&enumContext); |
| 342 | TransferData(&in, &parser); |
| 343 | parser.Finish(); |
| 344 | //PrintEnum(CurrentEnum); |
| 345 | Enums.push_back(CurrentEnum); |
| 346 | } |
| 347 | |
| 348 | // Some debug stuff goes here |
| 349 | static void PrintScope(const TScope& scope) { |
nothing calls this directly
no test coverage detected