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