| 630 | { |
| 631 | QiFunc_load() : QiFunc(1) {} |
| 632 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 633 | { |
| 634 | return inter->getSavedVariable(args[0].toString()); |
| 635 | } |
| 636 | }; |
| 637 | |
| 638 | struct QiFunc_str : public QiFunc |
nothing calls this directly
no test coverage detected