/// <summary>
 /// Creates a new <see cref="IntermediateDeclarationDictionary{TIdentifier, TDeclaration, TIntermediateDeclaration}"/>
 /// with the <see cref="Dictionary{TKey, TValue}"/> <paramref name="toWrap"/>.
 /// </summary>
 /// <param name="toWrap">The <see cref="Dictionary{TKey, TValue}"/> to encapsulate.</param>
 public IntermediateDeclarationDictionary(IntermediateDeclarationDictionary <TIdentifier, TDeclaration, TIntermediateDeclaration> toWrap) :
     base(toWrap)
 {
 }
Exemplo n.º 2
0
 public ValuesCollection(IntermediateDeclarationDictionary <TIdentifier, TDeclaration, TIntermediateDeclaration> owner)
 {
     this.owner = owner;
 }