| 822 | } |
| 823 | |
| 824 | Dictionary::Entry *getVariableEntry(const char *name) |
| 825 | { |
| 826 | name = prependDollar(name); |
| 827 | return gEvalState.globalVars.lookup(StringTable->insert(name)); |
| 828 | } |
| 829 | |
| 830 | Dictionary::Entry *addVariableEntry(const char *name) |
| 831 | { |
no test coverage detected