tiny.smg.command.scan.hints
Defined in command.scan.
API (1)
Actions
Public operations.
Source
Source: tools/smg/src/command/scan/hints.zig
zig
const std = @import("std");pub fn text(category: []const u8) []const u8 { if (std.mem.eql(u8, category, "attribute_call")) return "Common receiver method calls; usually low-signal unless the receiver type is known."; if (std.mem.eql(u8, category, "decorator")) return "Decorator source is external or dynamically provided; the decorated target was still scanned."; if (std.mem.eql(u8, category, "external_call")) return "External API call; add a manual edge only if it is architecturally important."; if (std.mem.eql(u8, category, "external_or_generated")) return "External or generated dependency; widen scan scope only if this target is first-party code."; if (std.mem.eql(u8, category, "missing_endpoint")) return "Extracted source or target is absent; decorators and framework registration calls are common causes."; if (std.mem.eql(u8, category, "missing_scan_scope")) return "Target looks first-party but is not in the scanned graph; scan a wider directory or include that package."; if (std.mem.eql(u8, category, "missing_source")) return "Extractor emitted an edge from a missing source; inspect the extractor for stale or malformed source names."; if (std.mem.eql(u8, category, "unresolved_local")) return "Likely local resolver gap; inspect samples and add an extractor or resolver regression test."; return "Inspect skipped edge samples for resolver or scope gaps.";}Source: tools/smg/src/command/scan/root.zig:5
zig
pub const hints = @import("hints.zig");Audit
| Definitions | 2 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |