| 391 | } |
| 392 | |
| 393 | const char *LineAnnotation::Text(int line) const { |
| 394 | if (annotations.Length() && (line >= 0) && (line < annotations.Length()) && annotations[line]) |
| 395 | return annotations[line]+sizeof(AnnotationHeader); |
| 396 | else |
| 397 | return 0; |
| 398 | } |
| 399 | |
| 400 | const unsigned char *LineAnnotation::Styles(int line) const { |
| 401 | if (annotations.Length() && (line >= 0) && (line < annotations.Length()) && annotations[line] && MultipleStyles(line)) |
no test coverage detected