internal ExplicitInterfacePropertyWithCodeAnalysis()
 {
     property          = new PropertyWithBodyWithCodeAnalysis();
     explicitInterface = new CachedChildNode <PropertyWithCodeAnalysis, PropertyDeclarationSyntax, InterfaceReferenceWithCodeAnalysis, NameSyntax>(
         property.Property.Node,
         () => new InterfaceReferenceWithCodeAnalysis(new UnspecifiedTypeReferenceWithCodeAnalysis()),
         syntax => syntax.ExplicitInterfaceSpecifier.Name,
         (parentSyntax, childSyntax) => parentSyntax.WithExplicitInterfaceSpecifier(parentSyntax.ExplicitInterfaceSpecifier.WithName(childSyntax)));
 }
 internal StaticClassPropertyWithCodeAnalysis()
 {
     property = new PropertyWithBodyWithCodeAnalysis();
 }
Exemplo n.º 3
0
 public static ITypeReferenceWithCodeAnalysis ToTypeReference(this PropertyWithBodyWithCodeAnalysis parent)
 {
     return(null);
 }
 internal StructPropertyWithCodeAnalysis()
 {
     property = new PropertyWithBodyWithCodeAnalysis();
 }