up
Some checks failed
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
Manifest Integrity / Validate Schema Integrity (push) Has been cancelled
Manifest Integrity / Validate Contract Documents (push) Has been cancelled
Manifest Integrity / Validate Pack Fixtures (push) Has been cancelled
Manifest Integrity / Audit SHA256SUMS Files (push) Has been cancelled
Manifest Integrity / Verify Merkle Roots (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Some checks failed
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
Manifest Integrity / Validate Schema Integrity (push) Has been cancelled
Manifest Integrity / Validate Contract Documents (push) Has been cancelled
Manifest Integrity / Validate Pack Fixtures (push) Has been cancelled
Manifest Integrity / Audit SHA256SUMS Files (push) Has been cancelled
Manifest Integrity / Verify Merkle Roots (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
This commit is contained in:
@@ -46,7 +46,9 @@ public sealed class ReachabilityGraphBuilder
|
||||
int? sourceLine = null,
|
||||
IReadOnlyDictionary<string, string>? attributes = null,
|
||||
string? purl = null,
|
||||
string? symbolDigest = null)
|
||||
string? symbolDigest = null,
|
||||
ReachabilitySymbol? symbol = null,
|
||||
string? codeBlockHash = null)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(symbolId))
|
||||
{
|
||||
@@ -63,7 +65,9 @@ public sealed class ReachabilityGraphBuilder
|
||||
sourceLine,
|
||||
attributes?.ToImmutableSortedDictionary(StringComparer.Ordinal) ?? ImmutableSortedDictionary<string, string>.Empty,
|
||||
purl?.Trim(),
|
||||
symbolDigest?.Trim());
|
||||
symbolDigest?.Trim(),
|
||||
symbol?.Trimmed(),
|
||||
codeBlockHash?.Trim());
|
||||
|
||||
_richNodes[id] = node;
|
||||
nodes.Add(id);
|
||||
@@ -184,6 +188,8 @@ public sealed class ReachabilityGraphBuilder
|
||||
rich.Lang,
|
||||
rich.Kind,
|
||||
rich.Display,
|
||||
rich.CodeBlockHash,
|
||||
rich.Symbol,
|
||||
source,
|
||||
rich.Attributes.Count > 0 ? rich.Attributes : null,
|
||||
rich.Purl,
|
||||
@@ -337,7 +343,9 @@ public sealed class ReachabilityGraphBuilder
|
||||
int? SourceLine,
|
||||
ImmutableSortedDictionary<string, string> Attributes,
|
||||
string? Purl = null,
|
||||
string? SymbolDigest = null);
|
||||
string? SymbolDigest = null,
|
||||
ReachabilitySymbol? Symbol = null,
|
||||
string? CodeBlockHash = null);
|
||||
|
||||
private sealed record RichEdge(
|
||||
string From,
|
||||
|
||||
Reference in New Issue
Block a user