Versions in this module Expand all Collapse all v0 v0.1.0 May 26, 2026 Changes in this version + type AnalysisIssue struct + Category IssueCategory + Code string + Location Location + Message string + Severity IssueSeverity + Suggestion string + type AnalysisSummary struct + ByCategory map[IssueCategory]int + BySeverity map[IssueSeverity]int + FilesScanned int + TotalIssues int + type ComplexityMetrics struct + AvgPerFunc float64 + Cognitive int + Cyclomatic int + Functions int + Lines int + type DepType string + const DepTypeCall + const DepTypeEmbedded + const DepTypeImport + type DependencyInfo struct + From string + Kind ImportKind + To string + Type DepType + type EdgeType string + const EdgeTypeCall + const EdgeTypeDependency + const EdgeTypeImport + type FileInfo struct + Complexity int + Functions int + Imports []ImportInfo + Lines int + Package string + Path string + Types int + type FunctionNode struct + End token.Pos + Func *ast.FuncDecl + Pos token.Pos + type GraphEdge struct + Dynamic bool + From string + Location Location + To string + Type EdgeType + type GraphNode struct + Column int + Complexity int + Exported bool + File string + ID string + Line int + Name string + Package string + Type NodeType + type ImportInfo struct + Alias string + Kind ImportKind + Name string + Path string + type ImportKind string + const ImportKindAlias + const ImportKindBlank + const ImportKindDot + const ImportKindNormal + type IssueCategory string + const IssueCategoryBug + const IssueCategoryCodeSmell + const IssueCategoryComplexity + const IssueCategoryDeprecated + const IssueCategoryPerformance + const IssueCategorySecurity + const IssueCategoryStyle + const IssueCategoryUnused + type IssueSeverity string + const IssueSeverityError + const IssueSeverityInfo + const IssueSeverityWarning + type Location struct + Column int + File string + Line int + type NodeType string + const NodeTypeFunction + const NodeTypeMethod + const NodeTypePackage + const NodeTypeType + type RefKind string + const RefKindCall + const RefKindDefinition + const RefKindReference + type ReferenceInfo struct + Kind RefKind + Location Location + Symbol string + type SymbolInfo struct + Complexity int + Doc string + Exported bool + Kind SymbolKind + Location Location + Name string + Signature string + type SymbolKind string + const SymbolKindConst + const SymbolKindField + const SymbolKindFunc + const SymbolKindImport + const SymbolKindInterface + const SymbolKindMethod + const SymbolKindPackage + const SymbolKindType + const SymbolKindVar