/// <summary> /// Sets the name to the specified value for the current context. /// </summary> public void SetVariable(string name, object value) { _scope.SetName(SymbolTable.StringToId(name), value); }
public void SetMemberAfter(string name, object value) { OnModuleChange(new ModuleChangeEventArgs(SymbolTable.StringToId(name), ModuleChangeType.Set, value)); Scope.SetName(SymbolTable.StringToId(name), value); }