* Constructor. * * @param operators additional operators (besides not, and, or), * highest priority first */
| 75 | * highest priority first |
| 76 | */ |
| 77 | ExpressionParser::ExpressionParser(QStringList operators) : // clazy:exclude=function-args-by-ref |
| 78 | m_operators(operators << QLatin1String("not") << QLatin1String("and") |
| 79 | << QLatin1String("or")), |
| 80 | m_error(false) |
| 81 | { |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Compare operator priority. |
nothing calls this directly
no outgoing calls
no test coverage detected