* Determine if a header is a closing header * * @return true if the header is a closing header. */
| 5660 | * @return true if the header is a closing header. |
| 5661 | */ |
| 5662 | bool ASFormatter::isClosingHeader(const string* header) const |
| 5663 | { |
| 5664 | return (header == &AS_ELSE |
| 5665 | || header == &AS_CATCH |
| 5666 | || header == &AS_FINALLY); |
| 5667 | } |
| 5668 | |
| 5669 | /** |
| 5670 | * Determine if a * following a closing paren is immediately. |
nothing calls this directly
no outgoing calls
no test coverage detected