1 write to Compilation
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\DriverStateTable.cs (1)
41
Compilation
= compilation;
5 references to Compilation
Microsoft.CodeAnalysis (5)
SourceGeneration\Nodes\SharedInputNodes.cs (4)
18
public static readonly InputNode<Compilation> Compilation = new InputNode<Compilation>(b => ImmutableArray.Create(b.
Compilation
));
20
public static readonly InputNode<CompilationOptions> CompilationOptions = new(b => ImmutableArray.Create(b.
Compilation
.Options), ReferenceEqualityComparer.Instance);
26
public static readonly InputNode<SyntaxTree> SyntaxTrees = new InputNode<SyntaxTree>(b => b.
Compilation
.SyntaxTrees.ToImmutableArray());
30
public static readonly InputNode<MetadataReference> MetadataReferences = new InputNode<MetadataReference>(b => b.
Compilation
.ExternalReferences);
SourceGeneration\Nodes\SourceOutputNode.cs (1)
67
SourceProductionContext context = new SourceProductionContext(sourcesBuilder, diagnostics, graphState.
Compilation
, cancellationToken);