You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.4 KiB
74 lines
1.4 KiB
// |
|
// Author: |
|
// Jb Evain (jbevain@gmail.com) |
|
// |
|
// Copyright (c) 2008 - 2015 Jb Evain |
|
// Copyright (c) 2008 - 2011 Novell, Inc. |
|
// |
|
// Licensed under the MIT/X11 license. |
|
// |
|
|
|
using System; |
|
|
|
using ILRuntime.Mono.Collections.Generic; |
|
|
|
namespace ILRuntime.Mono.Cecil { |
|
|
|
sealed class MemberDefinitionCollection<T> : Collection<T> where T : IMemberDefinition { |
|
|
|
TypeDefinition container; |
|
|
|
internal MemberDefinitionCollection (TypeDefinition container) |
|
{ |
|
this.container = container; |
|
} |
|
|
|
internal MemberDefinitionCollection (TypeDefinition container, int capacity) |
|
: base (capacity) |
|
{ |
|
this.container = container; |
|
} |
|
|
|
protected override void OnAdd (T item, int index) |
|
{ |
|
Attach (item); |
|
} |
|
|
|
protected sealed override void OnSet (T item, int index) |
|
{ |
|
Attach (item); |
|
} |
|
|
|
protected sealed override void OnInsert (T item, int index) |
|
{ |
|
Attach (item); |
|
} |
|
|
|
protected sealed override void OnRemove (T item, int index) |
|
{ |
|
Detach (item); |
|
} |
|
|
|
protected sealed override void OnClear () |
|
{ |
|
foreach (var definition in this) |
|
Detach (definition); |
|
} |
|
|
|
void Attach (T element) |
|
{ |
|
if (element.DeclaringType == container) |
|
return; |
|
|
|
if (element.DeclaringType != null) |
|
throw new ArgumentException ("Member already attached"); |
|
|
|
element.DeclaringType = this.container; |
|
} |
|
|
|
static void Detach (T element) |
|
{ |
|
element.DeclaringType = null; |
|
} |
|
} |
|
}
|
|
|