diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-02-07 13:22:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-02-07 15:02:57 +0200 |
commit | adc9a34ee759e31dc1f7f9b98629042be3819815 (patch) | |
tree | 7feef9c4305fda1020bc9b915dde721a29b69d29 /tests/function/json/testscript | |
parent | fcc239ecdbd1467a4ac8b17a353e1b0ae7fd63a0 (diff) |
Use reverse to fundamental types semantics in $json.member_value()
Feels like this is an equivalent context to subscript/iteration.
Diffstat (limited to 'tests/function/json/testscript')
-rw-r--r-- | tests/function/json/testscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/function/json/testscript b/tests/function/json/testscript index f5fc671..fdfc9ab 100644 --- a/tests/function/json/testscript +++ b/tests/function/json/testscript @@ -198,7 +198,7 @@ EOO for m: $j print $member_name($m) $member_value($m) EOI - str "abc" + str abc num 123 arr [1,2,3] obj {"one":1,"two":2,"three":3} |