| 113 | } |
| 114 | |
| 115 | bool DocStringAnalyser::analyseDocStrings(SourceUnit const& _sourceUnit) |
| 116 | { |
| 117 | auto errorWatcher = m_errorReporter.errorWatcher(); |
| 118 | _sourceUnit.accept(*this); |
| 119 | return errorWatcher.ok(); |
| 120 | } |
| 121 | |
| 122 | bool DocStringAnalyser::visit(FunctionDefinition const& _function) |
| 123 | { |
no test coverage detected