| 361 | } |
| 362 | |
| 363 | Identifier::Identifier(const Identifier& rhs) |
| 364 | { |
| 365 | rhs.makeConstant(); |
| 366 | cd = rhs.cd; |
| 367 | m_index = rhs.m_index; |
| 368 | } |
| 369 | |
| 370 | Identifier::Identifier(uint index) |
| 371 | : m_index(index) |
nothing calls this directly
no test coverage detected