(n pcast.Node)
| 20 | } |
| 21 | |
| 22 | func todo(n pcast.Node) *ast.TODO { |
| 23 | if debug.Active { |
| 24 | log.Printf("dolphin.convert: Unknown node type %T\n", n) |
| 25 | } |
| 26 | return &ast.TODO{} |
| 27 | } |
| 28 | |
| 29 | func identifier(id string) string { |
| 30 | return strings.ToLower(id) |
no outgoing calls
no test coverage detected