2 writes to TopLevelBinderFlags
Microsoft.CodeAnalysis.CSharp (2)
CSharpCompilationOptions.cs (2)
227
this.
TopLevelBinderFlags
= topLevelBinderFlags;
271
return (flags == TopLevelBinderFlags) ? this : new CSharpCompilationOptions(this) {
TopLevelBinderFlags
= flags };
8 references to TopLevelBinderFlags
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder.cs (1)
34
this.Flags = compilation.Options.
TopLevelBinderFlags
;
Compilation\CSharpDeterministicKeyBuilder.cs (1)
30
writer.Write("topLevelBinderFlags", csharpOptions.
TopLevelBinderFlags
);
CSharpCompilationOptions.cs (5)
262
topLevelBinderFlags: other.
TopLevelBinderFlags
,
271
return (flags ==
TopLevelBinderFlags
) ? this : new CSharpCompilationOptions(this) { TopLevelBinderFlags = flags };
743
this.
TopLevelBinderFlags
== other.
TopLevelBinderFlags
&&
758
Hash.Combine(((uint)
TopLevelBinderFlags
).GetHashCode(), ((int)this.NullableContextOptions).GetHashCode()))));
Symbols\Compilation_WellKnownMembers.cs (1)
125
bool ignoreCorLibraryDuplicatedTypes = this.Options.
TopLevelBinderFlags
.Includes(BinderFlags.IgnoreCorLibraryDuplicatedTypes);