internal void InitializeMembersFrom(RubyModule/*!*/ module) { Context.RequiresClassHierarchyLock(); Mutate(); Assert.NotNull(module); #if !SILVERLIGHT // missing Clone on Delegate if (module._namespaceTracker != null && _constants == null) { #endif // initialize the module so that we can copy all constants from it: module.InitializeConstantsNoLock(); // initialize all ancestors of self: InitializeConstantsNoLock(); #if !SILVERLIGHT } else { _constantsInitializer = (module._constantsInitializer != null) ? (Action<RubyModule>)module._constantsInitializer.Clone() : null; _constantsState = module._constantsState; } #endif _constants = (module._constants != null) ? new Dictionary<string, ConstantStorage>(module._constants) : null; // copy namespace members: if (module._namespaceTracker != null) { Debug.Assert(_constants != null); foreach (KeyValuePair<SymbolId, object> constant in module._namespaceTracker.SymbolAttributes) { _constants.Add(SymbolTable.IdToString(constant.Key), new ConstantStorage(constant.Value)); } } #if SILVERLIGHT module.InitializeMethodsNoLock(); InitializeMethodsNoLock(); #else _methodsInitializer = (module._methodsInitializer != null) ? (Action<RubyModule>)module._methodsInitializer.Clone() : null; _methodsState = module._methodsState; #endif _methods = (module._methods != null) ? new Dictionary<string, RubyMemberInfo>(module._methods) : null; _classVariables = (module._classVariables != null) ? new Dictionary<string, object>(module._classVariables) : null; _mixins = ArrayUtils.Copy(module._mixins); // dependentModules - skip // tracker - skip, .NET members not copied // TODO: // - handle overloads cached in groups // - version updates MethodsUpdated("InitializeFrom"); }