| 2771 | |
| 2772 | |
| 2773 | ResultType Script::LineBuffer::EnsureCapacity(size_t aLength) |
| 2774 | { |
| 2775 | aLength += RESERVED_SPACE; |
| 2776 | return size < aLength ? Realloc(aLength) : OK; |
| 2777 | } |
| 2778 | |
| 2779 | ResultType Script::LineBuffer::Expand() |
| 2780 | { |
no outgoing calls
no test coverage detected