| 42 | using namespace solidity::frontend; |
| 43 | |
| 44 | bool DocStringTagParser::parseDocStrings(SourceUnit const& _sourceUnit) |
| 45 | { |
| 46 | auto errorWatcher = m_errorReporter.errorWatcher(); |
| 47 | _sourceUnit.accept(*this); |
| 48 | return errorWatcher.ok(); |
| 49 | } |
| 50 | |
| 51 | bool DocStringTagParser::validateDocStringsUsingTypes(SourceUnit const& _sourceUnit) |
| 52 | { |
no test coverage detected