(obj shared.InceptionType)
| 58 | } |
| 59 | |
| 60 | func (i *Inception) Add(obj shared.InceptionType) { |
| 61 | i.objs = append(i.objs, NewStructInfo(obj)) |
| 62 | i.PackagePath = i.objs[0].Typ.PkgPath() |
| 63 | } |
| 64 | |
| 65 | func (i *Inception) wantUnmarshal(si *StructInfo) bool { |
| 66 | if si.Options.SkipDecoder { |
no test coverage detected