| 70 | } |
| 71 | |
| 72 | Error expectError(std::string const& _source, bool _allowWarningsAndInfos = false) |
| 73 | { |
| 74 | |
| 75 | auto error = parseAndReturnFirstError(_source, _allowWarningsAndInfos); |
| 76 | BOOST_REQUIRE(error); |
| 77 | return *error; |
| 78 | } |
| 79 | |
| 80 | std::tuple<std::optional<SourceNameMap>, ErrorList> tryGetSourceLocationMapping(std::string _source) |
| 81 | { |
nothing calls this directly
no test coverage detected