Skip to content

Commit

Permalink
Allow .[-1] in path expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicowilliams committed Jul 27, 2023
1 parent 4160a36 commit a6fe347
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/execute.c
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,14 @@ jv jq_next(jq_state *jq) {
set_error(jq, jv_invalid_with_msg(msg));
goto do_backtrack;
}
// $array | .[-1]
if (jv_get_kind(k) == JV_KIND_NUMBER && jv_get_kind(t) == JV_KIND_ARRAY) {
int idx = jv_number_value(k);
if (idx < 0) {
jv_free(k);
k = jv_number(jv_array_length(jv_copy(t)) + idx);
}
}
jv v = jv_get(t, jv_copy(k));
if (jv_is_valid(v)) {
path_append(jq, k, jv_copy(v));
Expand Down

0 comments on commit a6fe347

Please sign in to comment.