Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions jsonpath.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,9 @@ func filter_get_from_explicit_path(obj interface{}, path string) (interface{}, e
//fmt.Println("f: xobj", xobj)
for _, s := range steps {
op, key, args, err := parse_token(s)
if err != nil {
return nil, err
}
// "key", "idx"
switch op {
case "key":
Expand Down