| 584 | /* UnionType */ |
| 585 | |
| 586 | void UnionType::addCase(UnionCase *unionCase) |
| 587 | { |
| 588 | unionCase->setUnionReferencePointer(this); |
| 589 | m_unionCases.push_back(unionCase); |
| 590 | } |
| 591 | |
| 592 | string UnionType::getDescription() const |
| 593 | { |
no test coverage detected