(c *checker.Checker, typ *checker.Type)
| 448 | } |
| 449 | |
| 450 | func formatExecutionType(c *checker.Checker, typ *checker.Type) string { |
| 451 | if typ == nil { |
| 452 | return "" |
| 453 | } |
| 454 | return c.TypeToStringEx(typ, nil, checker.TypeFormatFlagsNoTruncation, nil) |
| 455 | } |
| 456 | |
| 457 | func formatExecutionSourceNode(sf *ast.SourceFile, node *ast.Node) string { |
| 458 | if sf == nil || node == nil { |
no outgoing calls
no test coverage detected