| 764 | } |
| 765 | |
| 766 | Dictionary::Entry *getVariableEntry(const char *name) |
| 767 | { |
| 768 | name = prependDollar(name); |
| 769 | return gEvalState.globalVars.lookup(StringTable->insert(name)); |
| 770 | } |
| 771 | |
| 772 | Dictionary::Entry *addVariableEntry(const char *name) |
| 773 | { |
no test coverage detected