1 write to _flags
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\BoundAttributeDescriptor.cs (1)
65
_flags
= flags;
8 references to _flags
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\BoundAttributeDescriptor.cs (8)
20
public BoundAttributeFlags Flags =>
_flags
;
36
public bool CaseSensitive =>
_flags
.IsFlagSet(BoundAttributeFlags.CaseSensitive);
37
public bool HasIndexer =>
_flags
.IsFlagSet(BoundAttributeFlags.HasIndexer);
40
public bool IsEnum =>
_flags
.IsFlagSet(BoundAttributeFlags.IsEnum);
43
internal bool IsEditorRequired =>
_flags
.IsFlagSet(BoundAttributeFlags.IsEditorRequired);
44
public bool IsDirectiveAttribute =>
_flags
.IsFlagSet(BoundAttributeFlags.IsDirectiveAttribute);
45
public bool IsWeaklyTyped =>
_flags
.IsFlagSet(BoundAttributeFlags.IsWeaklyTyped);
86
builder.Append((byte)
_flags
);