Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
        public void SetMemberAfter(string name, object value)
        {
            OnModuleChange(new ModuleChangeEventArgs(SymbolTable.StringToId(name), ModuleChangeType.Set, value));

            Scope.SetName(SymbolTable.StringToId(name), value);
        }