| 377 | } |
| 378 | |
| 379 | bool LineAnnotation::MultipleStyles(int line) const { |
| 380 | if (annotations.Length() && (line >= 0) && (line < annotations.Length()) && annotations[line]) |
| 381 | return reinterpret_cast<AnnotationHeader *>(annotations[line])->style == IndividualStyles; |
| 382 | else |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | int LineAnnotation::Style(int line) { |
| 387 | if (annotations.Length() && (line >= 0) && (line < annotations.Length()) && annotations[line]) |
no test coverage detected