MCPcopy Create free account
hub / github.com/dirkvranckaert/AndroidDecompiler / isSharpStyleWithParen

Method isSharpStyleWithParen

astyle/src/ASFormatter.cpp:4532–4539  ·  view source on GitHub ↗

* check if a sharp header is a paren or nonparen header */

Source from the content-addressed store, hash-verified

4530* check if a sharp header is a paren or nonparen header
4531*/
4532bool 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected