(_ *ast.SourceFile, edge typeparser.ExecutionLink)
| 442 | } |
| 443 | |
| 444 | func formatExecutionFlowEdgeLabel(_ *ast.SourceFile, edge typeparser.ExecutionLink) string { |
| 445 | var lines []string |
| 446 | lines = append(lines, "kind: "+string(edge.Kind)) |
| 447 | return strings.Join(lines, "\n") |
| 448 | } |
| 449 | |
| 450 | func formatExecutionType(c *checker.Checker, typ *checker.Type) string { |
| 451 | if typ == nil { |
no outgoing calls
no test coverage detected