14 references to Dependencies
Microsoft.CodeAnalysis (5)
Binding\BindingDiagnosticBag.cs (5)
112
Debug.Assert(allowMismatchInDependencyAccumulation || other.
Dependencies
.IsDefaultOrEmpty || this.AccumulatesDependencies || !this.AccumulatesDiagnostics);
113
AddDependencies(other.
Dependencies
);
317
public ImmutableBindingDiagnostic<TAssemblySymbol> NullToEmpty() => new ImmutableBindingDiagnostic<TAssemblySymbol>(Diagnostics,
Dependencies
);
321
return first.Diagnostics == second.Diagnostics && first.
Dependencies
== second.
Dependencies
;
Microsoft.CodeAnalysis.CSharp (5)
Binder\MethodGroupResolution.cs (1)
51
Debug.Assert(!diagnostics.
Dependencies
.IsDefault);
Compilation\CSharpCompilation.cs (3)
1731
entryPoint.Diagnostics.Diagnostics.Concat(diagnostics.ToReadOnlyAndFree()), entryPoint.Diagnostics.
Dependencies
));
2990
return new ImmutableBindingDiagnostic<AssemblySymbol>(result.AsImmutable().Concat(clsDiagnostics.Diagnostics), clsDiagnostics.
Dependencies
);
3007
ImmutableInterlocked.InterlockedInitialize(ref _lazyClsComplianceDependencies, result.
Dependencies
);
Compiler\MethodCompiler.cs (1)
1163
actualDiagnostics = new ImmutableBindingDiagnostic<AssemblySymbol>(sourceMethod.SetDiagnostics(actualDiagnostics.Diagnostics, out diagsWritten), actualDiagnostics.
Dependencies
);
Microsoft.CodeAnalysis.VisualBasic (4)
Compilation\VisualBasicCompilation.vb (1)
2212
ImmutableInterlocked.InterlockedInitialize(_lazyClsComplianceDependencies, result.
Dependencies
)
Semantics\TypeInference\TypeArgumentInference.vb (1)
2175
Me.Diagnostic.AddDependencies(boundLambda.Diagnostics.
Dependencies
)
Symbols\Source\SourceAssemblySymbol.vb (1)
1237
ImmutableInterlocked.InterlockedInitialize(_lazyAssemblyLevelDeclarationDependencies, immutableBindingDiagnostic.
Dependencies
)
Symbols\Source\SourceMemberMethodSymbol.vb (1)
837
diagBag.AddDependencies(resolutionResult.Diagnostics.
Dependencies
)