(funcname string, n node)
| 21 | } |
| 22 | |
| 23 | func todo(funcname string, n node) *ast.TODO { |
| 24 | if debug.Active { |
| 25 | log.Printf("sqlite.%s: Unknown node type %T\n", funcname, n) |
| 26 | } |
| 27 | return &ast.TODO{} |
| 28 | } |
| 29 | |
| 30 | func identifier(id string) string { |
| 31 | if len(id) >= 2 && id[0] == '"' && id[len(id)-1] == '"' { |
no outgoing calls
no test coverage detected