| 3462 | } |
| 3463 | |
| 3464 | void asCReader::SListAdjuster::SetRepeatCount(asUINT rc) |
| 3465 | { |
| 3466 | // Make sure the list is expecting a repeat at this location |
| 3467 | asASSERT( patternNode->type == asLPT_REPEAT || patternNode->type == asLPT_REPEAT_SAME ); |
| 3468 | |
| 3469 | // Now move to the next patternNode |
| 3470 | patternNode = patternNode->next; |
| 3471 | |
| 3472 | repeatCount = rc; |
| 3473 | } |
| 3474 | |
| 3475 | void asCReader::SListAdjuster::AdjustAllocMem() |
| 3476 | { |
no outgoing calls
no test coverage detected