1 write to _flags
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\RazorCodeGenerationOptions.cs (1)
73
_flags
= flags;
20 references to _flags
Microsoft.CodeAnalysis.Razor.Compiler (20)
Language\RazorCodeGenerationOptions.cs (20)
85
=> (
_flags
& Flags.DesignTime) == Flags.DesignTime;
88
=> (
_flags
& Flags.IndentWithTabs) == Flags.IndentWithTabs;
100
=> (
_flags
& Flags.SuppressChecksum) == Flags.SuppressChecksum;
119
=> (
_flags
& Flags.SuppressMetadataAttributes) == Flags.SuppressMetadataAttributes;
129
=> (
_flags
& Flags.SuppressMetadataSourceChecksumAttributes) == Flags.SuppressMetadataSourceChecksumAttributes;
135
=> (
_flags
& Flags.SuppressPrimaryMethodBody) == Flags.SuppressPrimaryMethodBody;
141
=> (
_flags
& Flags.SuppressNullabilityEnforcement) == Flags.SuppressNullabilityEnforcement;
147
=> (
_flags
& Flags.OmitMinimizedComponentAttributeValues) == Flags.OmitMinimizedComponentAttributeValues;
153
=> (
_flags
& Flags.SupportLocalizedComponentNames) == Flags.SupportLocalizedComponentNames;
159
=> (
_flags
& Flags.UseEnhancedLinePragma) == Flags.UseEnhancedLinePragma;
165
=> (
_flags
& Flags.SuppressAddComponentParameter) == Flags.SuppressAddComponentParameter;
171
=> (
_flags
& Flags.RemapLinePragmaPathsOnWindows) == Flags.RemapLinePragmaPathsOnWindows;
176
: new(value, NewLine, RootNamespace, CssScope, SuppressUniqueIds, RazorWarningLevel,
_flags
);
181
: new(IndentSize, value, RootNamespace, CssScope, SuppressUniqueIds, RazorWarningLevel,
_flags
);
186
: new(IndentSize, NewLine, value, CssScope, SuppressUniqueIds, RazorWarningLevel,
_flags
);
191
: new(IndentSize, NewLine, RootNamespace, value, SuppressUniqueIds, RazorWarningLevel,
_flags
);
196
: new(IndentSize, NewLine, RootNamespace, CssScope, value, RazorWarningLevel,
_flags
);
201
: new(IndentSize, NewLine, RootNamespace, CssScope, SuppressUniqueIds, value,
_flags
);
217
var flags =
_flags
;
279
return flags ==
_flags