| 1816 | } // namespace |
| 1817 | |
| 1818 | static ValueFlow::Value execute(const Token* expr, ProgramMemory& pm, const Settings& settings) |
| 1819 | { |
| 1820 | Executor ex{&pm, settings}; |
| 1821 | return ex.execute(expr); |
| 1822 | } |
| 1823 | |
| 1824 | std::vector<ValueFlow::Value> execute(const Scope* scope, ProgramMemory& pm, const Settings& settings) |
| 1825 | { |
no test coverage detected