| 1013 | } |
| 1014 | |
| 1015 | const char *getVariable(const char *name, const char* def) |
| 1016 | { |
| 1017 | const char *objField = getObjectTokenField(name); |
| 1018 | if (objField) |
| 1019 | { |
| 1020 | return objField; |
| 1021 | } |
| 1022 | else |
| 1023 | { |
| 1024 | Dictionary::Entry *entry = getVariableEntry(name); |
| 1025 | return entry ? entry->getStringValue() : def; |
| 1026 | } |
| 1027 | } |
| 1028 | |
| 1029 | const char *getLocalVariable(const char *name) |
| 1030 | { |
no test coverage detected