Returns a string containing the part of the source buffer beginning at offset start and ending immediately before offset end (so the length of the resulting string is end - start).
(int start, int end)
| 1043 | * end - start}). |
| 1044 | */ |
| 1045 | String bufferSlice(int start, int end) { |
| 1046 | return new String(this.buffer, start, end - start); |
| 1047 | } |
| 1048 | |
| 1049 | // TODO(adonovan): don't retain comments unconditionally. |
| 1050 | private Comment addComment(int start, int end) { |
no outgoing calls
no test coverage detected