| 3816 | } |
| 3817 | |
| 3818 | ASTPointer<StructuredDocumentation> FunctionType::documentation() const |
| 3819 | { |
| 3820 | auto function = dynamic_cast<StructurallyDocumented const*>(m_declaration); |
| 3821 | if (function) |
| 3822 | return function->documentation(); |
| 3823 | |
| 3824 | return ASTPointer<StructuredDocumentation>(); |
| 3825 | } |
| 3826 | |
| 3827 | bool FunctionType::padArguments() const |
| 3828 | { |
no outgoing calls
no test coverage detected