| 28 | collectionStack.push(type); |
| 29 | } |
| 30 | void PopCollectionType(CollectionType::value type) { |
| 31 | assert(type == GetCurCollectionType()); |
| 32 | (void)type; |
| 33 | collectionStack.pop(); |
| 34 | } |
| 35 | |
| 36 | private: |
| 37 | std::stack<CollectionType::value> collectionStack; |
no test coverage detected