| 584 | { |
| 585 | QiFunc_clear_global() : QiFunc(0) {} |
| 586 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 587 | { |
| 588 | inter->clearGlobal(); |
| 589 | return {}; |
| 590 | } |
| 591 | }; |
| 592 | struct QiFunc_clear_save : public QiFunc |
| 593 | { |
nothing calls this directly
no test coverage detected