| 844 | } |
| 845 | |
| 846 | Dictionary::Entry *getAddLocalVariableEntry(const char *name) |
| 847 | { |
| 848 | name = prependPercent(name); |
| 849 | StringTableEntry stName = StringTable->insert(name); |
| 850 | Dictionary::Entry *entry = gEvalState.getCurrentFrame().lookup(stName); |
| 851 | if (!entry) |
| 852 | entry = gEvalState.getCurrentFrame().add(stName); |
| 853 | return entry; |
| 854 | } |
| 855 | |
| 856 | void setVariable(const char *name, const char *value) |
| 857 | { |
nothing calls this directly
no test coverage detected