| 1096 | } |
| 1097 | |
| 1098 | bool removeVariable(const char *name) |
| 1099 | { |
| 1100 | name = StringTable->lookup(prependDollar(name)); |
| 1101 | return name!=0 && gEvalState.globalVars.removeVariable(name); |
| 1102 | } |
| 1103 | |
| 1104 | void addVariableNotify( const char *name, const NotifyDelegate &callback ) |
| 1105 | { |
no test coverage detected