| 1839 | |
| 1840 | namespace { |
| 1841 | inline bool CheckListParametersEx(cm::GenEx::Evaluation* eval, |
| 1842 | GeneratorExpressionContent const* cnt, |
| 1843 | cm::string_view option, std::size_t count, |
| 1844 | int required = 1, bool exactly = true) |
| 1845 | { |
| 1846 | return CheckGenExParameters(eval, cnt, "LIST"_s, option, count, required, |
| 1847 | exactly); |
| 1848 | } |
| 1849 | inline bool CheckListParameters(cm::GenEx::Evaluation* eval, |
| 1850 | GeneratorExpressionContent const* cnt, |
| 1851 | cm::string_view option, Arguments args, |
no test coverage detected
searching dependent graphs…