| 721 | } |
| 722 | |
| 723 | static GameValue StringCall(const GameState* state, GameValuePar oper1, GameValuePar oper2) |
| 724 | { |
| 725 | GameVarSpace local(state->GetContext()); |
| 726 | state->BeginContext(&local); |
| 727 | state->VarSetLocal("_this", oper1, true); |
| 728 | RString expression = oper2; |
| 729 | GameValue ret = state->EvaluateMultiple(expression); |
| 730 | state->EndContext(); |
| 731 | return ret; |
| 732 | } |
| 733 | |
| 734 | static GameValue StringLocal(const GameState* state, GameValuePar oper1) |
| 735 | { |
nothing calls this directly
no test coverage detected