| 1586 | } |
| 1587 | |
| 1588 | int asCByteCode::GetSize() |
| 1589 | { |
| 1590 | int size = 0; |
| 1591 | asCByteInstruction *instr = first; |
| 1592 | while( instr ) |
| 1593 | { |
| 1594 | size += instr->GetSize(); |
| 1595 | |
| 1596 | instr = instr->next; |
| 1597 | } |
| 1598 | |
| 1599 | return size; |
| 1600 | } |
| 1601 | |
| 1602 | void asCByteCode::AddCode(asCByteCode *bc) |
| 1603 | { |
no outgoing calls
no test coverage detected