| 593 | { |
| 594 | QiFunc_clear_save() : QiFunc(0) {} |
| 595 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 596 | { |
| 597 | inter->clearSaved(); |
| 598 | return {}; |
| 599 | } |
| 600 | }; |
| 601 | struct QiFunc_clear_func : public QiFunc |
| 602 | { |
nothing calls this directly
no test coverage detected