| 617 | { |
| 618 | QiFunc_save() : QiFunc(2) {} |
| 619 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 620 | { |
| 621 | inter->setSavedVariable(args[0].toString(), args[1]); |
| 622 | return args[1]; |
| 623 | } |
| 624 | }; |
| 625 | /* |
| 626 | load a var |
nothing calls this directly
no test coverage detected