* check if a sharp header is a paren or nonparen header */
| 4530 | * check if a sharp header is a paren or nonparen header |
| 4531 | */ |
| 4532 | bool ASFormatter::isSharpStyleWithParen(const string* header) const |
| 4533 | { |
| 4534 | if (isSharpStyle() && peekNextChar() == '(' |
| 4535 | && (header == &AS_CATCH |
| 4536 | || header == &AS_DELEGATE)) |
| 4537 | return true; |
| 4538 | return false; |
| 4539 | } |
| 4540 | |
| 4541 | /** |
| 4542 | * Check for a following header when a comment is reached. |
nothing calls this directly
no outgoing calls
no test coverage detected