1 write to Modifiers
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationSymbol.cs (1)
47this.Modifiers = modifiers;
22 references to Modifiers
Microsoft.CodeAnalysis.CodeStyle.Fixes (22)
CodeGenerationAbstractMethodSymbol.cs (1)
85public virtual bool IsAsync => this.Modifiers.IsAsync;
CodeGenerationAbstractNamedTypeSymbol.cs (2)
122public bool IsRefLikeType => Modifiers.IsRef; 130public bool IsFileLocal => Modifiers.IsFile;
CodeGenerationConstructedMethodSymbol.cs (1)
22constructedFrom.Modifiers,
CodeGenerationConstructedNamedTypeSymbol.cs (1)
23constructedFrom.DeclaredAccessibility, constructedFrom.Modifiers,
CodeGenerationConstructorSymbol.cs (1)
43var result = new CodeGenerationConstructorSymbol(this.ContainingType, this.GetAttributes(), this.DeclaredAccessibility, this.Modifiers, this.Parameters);
CodeGenerationEventSymbol.cs (1)
50this.Modifiers, this.Type, this.ExplicitInterfaceImplementations,
CodeGenerationFieldSymbol.cs (4)
44this.Modifiers, this.Type, this.Name, this.HasConstantValue, this.ConstantValue); 72return this.Modifiers.IsConst; 80return this.Modifiers.IsReadOnly; 86public bool IsRequired => Modifiers.IsRequired;
CodeGenerationMethodSymbol.cs (2)
61this.GetAttributes(), this.DeclaredAccessibility, this.Modifiers, 105public override bool IsReadOnly => Modifiers.IsReadOnly;
CodeGenerationNamedTypeSymbol.cs (1)
61this.Modifiers, this.IsRecord, this.TypeKind, this.Name, _typeParameters, this.BaseType,
CodeGenerationPropertySymbol.cs (2)
58this.Modifiers, this.Type, this.RefKind, this.ExplicitInterfaceImplementations, 84public bool IsRequired => Modifiers.IsRequired && !IsIndexer;
CodeGenerationSymbol.cs (5)
98return this.Modifiers.IsStatic; 106return this.Modifiers.IsVirtual; 114return this.Modifiers.IsOverride; 122return this.Modifiers.IsAbstract; 130return this.Modifiers.IsSealed;
CodeGenerationTypeSymbol.cs (1)
84bool ITypeSymbol.IsReadOnly => Modifiers.IsReadOnly;