(int start, int end)
| 1048 | |
| 1049 | // TODO(adonovan): don't retain comments unconditionally. |
| 1050 | private Comment addComment(int start, int end) { |
| 1051 | String content = bufferSlice(start, end); |
| 1052 | Comment comment = new Comment(locs, start, content); |
| 1053 | comments.add(comment); |
| 1054 | return comment; |
| 1055 | } |
| 1056 | } |
no test coverage detected