| 575 | { |
| 576 | QiFunc_clear_local() : QiFunc(0) {} |
| 577 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 578 | { |
| 579 | inter->clearLocal(); |
| 580 | return {}; |
| 581 | } |
| 582 | }; |
| 583 | struct QiFunc_clear_global : public QiFunc |
| 584 | { |
nothing calls this directly
no test coverage detected