11 references to Dependencies
Microsoft.CodeAnalysis (5)
Binding\BindingDiagnosticBag.cs (5)
110
Debug.Assert(allowMismatchInDependencyAccumulation || other.
Dependencies
.IsDefaultOrEmpty || this.AccumulatesDependencies || !this.AccumulatesDiagnostics);
111
AddDependencies(other.
Dependencies
);
328
public ReadOnlyBindingDiagnostic<TAssemblySymbol> NullToEmpty() => new ReadOnlyBindingDiagnostic<TAssemblySymbol>(Diagnostics,
Dependencies
);
332
return first.Diagnostics == second.Diagnostics && first.
Dependencies
== second.
Dependencies
;
Microsoft.CodeAnalysis.CSharp (6)
Binder\MethodGroupResolution.cs (1)
53
Debug.Assert(!diagnostics.
Dependencies
.IsDefault);
Binder\SwitchBinder.cs (1)
68
ImmutableInterlocked.InterlockedInitialize(ref _switchGoverningDependencies, immutableSwitchGoverningDiagnostics.
Dependencies
);
Compilation\CSharpCompilation.cs (3)
1909
entryPoint.Diagnostics.Diagnostics.Concat(diagnostics.ToReadOnlyAndFree()), entryPoint.Diagnostics.
Dependencies
));
3284
return new ReadOnlyBindingDiagnostic<AssemblySymbol>(result.AsImmutable().Concat(clsDiagnostics.Diagnostics), clsDiagnostics.
Dependencies
);
3306
ImmutableInterlocked.InterlockedInitialize(ref _lazyClsComplianceDependencies, result.
Dependencies
);
Compiler\MethodCompiler.cs (1)
1146
actualDiagnostics = new ReadOnlyBindingDiagnostic<AssemblySymbol>(sourceMethod.SetDiagnostics(actualDiagnostics.Diagnostics, out diagsWritten), actualDiagnostics.
Dependencies
);