protected CommonEmbeddedMethod(TEmbeddedType containingType, TMethodSymbol underlyingMethod) :
     base(underlyingMethod)
 {
     this.ContainingType = containingType;
     _typeParameters     = GetTypeParameters();
     _parameters         = GetParameters();
 }
Exemple #2
0
 protected CommonEmbeddedField(
     TEmbeddedType containingType,
     TFieldSymbol underlyingField
     ) : base(underlyingField)
 {
     this.ContainingType = containingType;
 }