(ic *Inception, name string, typ reflect.Type, ptr bool, quoted bool)
| 61 | } |
| 62 | |
| 63 | func handleField(ic *Inception, name string, typ reflect.Type, ptr bool, quoted bool) string { |
| 64 | return handleFieldAddr(ic, name, false, typ, ptr, quoted) |
| 65 | } |
| 66 | |
| 67 | func handleFieldAddr(ic *Inception, name string, takeAddr bool, typ reflect.Type, ptr bool, quoted bool) string { |
| 68 | out := fmt.Sprintf("/* handler: %s type=%v kind=%v quoted=%t*/\n", name, typ, typ.Kind(), quoted) |
nothing calls this directly
no test coverage detected
searching dependent graphs…