jpath/jpath.go
Function executeSlice
has 7 return statements (exceeds 4 allowed). Wontfix
Wontfix
func executeSlice(head, tail string, v reflect.Value) (interface{}, error) {
if v.Kind() != reflect.Slice {
return nil, ErrNotSlice
}
if v.IsNil() {
Function executeMap
has 6 return statements (exceeds 4 allowed). Wontfix
Wontfix
func executeMap(head, tail string, v reflect.Value) (interface{}, error) {
if v.Kind() != reflect.Map {
return nil, ErrNotMap
}
keyStr := head[1:]