7 writes to _flags
Microsoft.CodeAnalysis.Razor.Compiler (7)
Language\BoundAttributeDescriptorBuilder.cs (6)
66set => _flags.UpdateFlag(BoundAttributeFlags.IsEnum, value); 72set => _flags.UpdateFlag(BoundAttributeFlags.HasIndexer, value); 86set => _flags.UpdateFlag(BoundAttributeFlags.IsEditorRequired, value); 92set => _flags.UpdateFlag(BoundAttributeFlags.IsDirectiveAttribute, value); 98set => _flags.UpdateFlag(BoundAttributeFlags.IsWeaklyTyped, value); 123_flags.UpdateFlag(BoundAttributeFlags.CaseSensitive, value);
Language\BoundAttributeDescriptorBuilder_Pooling.cs (1)
26_flags = 0;
7 references to _flags
Microsoft.CodeAnalysis.Razor.Compiler (7)
Language\BoundAttributeDescriptorBuilder.cs (7)
65get => _flags.IsFlagSet(BoundAttributeFlags.IsEnum); 71get => _flags.IsFlagSet(BoundAttributeFlags.HasIndexer); 85get => _flags.IsFlagSet(BoundAttributeFlags.IsEditorRequired); 91get => _flags.IsFlagSet(BoundAttributeFlags.IsDirectiveAttribute); 97get => _flags.IsFlagSet(BoundAttributeFlags.IsWeaklyTyped); 120get => _caseSensitiveSet ? _flags.IsFlagSet(BoundAttributeFlags.CaseSensitive) : _parent.CaseSensitive; 156_flags,