| 786 | } |
| 787 | |
| 788 | Dictionary::Entry *getAddLocalVariableEntry(const char *name) |
| 789 | { |
| 790 | name = prependPercent(name); |
| 791 | StringTableEntry stName = StringTable->insert(name); |
| 792 | Dictionary::Entry *entry = gEvalState.getCurrentFrame().lookup(stName); |
| 793 | if (!entry) |
| 794 | entry = gEvalState.getCurrentFrame().add(stName); |
| 795 | return entry; |
| 796 | } |
| 797 | |
| 798 | void setVariable(const char *name, const char *value) |
| 799 | { |
nothing calls this directly
no test coverage detected