| 565 | { |
| 566 | QiFunc_clear() : QiFunc(0) {} |
| 567 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 568 | { |
| 569 | inter->clearLocal(); |
| 570 | inter->clearGlobal(); |
| 571 | return {}; |
| 572 | } |
| 573 | }; |
| 574 | struct QiFunc_clear_local : public QiFunc |
| 575 | { |
nothing calls this directly
no test coverage detected