diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-05-22 16:17:05 -0400 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-05-22 16:17:05 -0400 |
commit | 7c67b09765d7334690d9b48e91ee188e9be179b7 (patch) | |
tree | 692ed4aeb0c6034c0ee78e23119028a4417e4446 /trace | |
parent | a23ae9818310834f54a500c0e583c3652395f0da (diff) |
have a single token callback
Diffstat (limited to 'trace')
-rwxr-xr-x | trace | 30 |
1 files changed, 0 insertions, 30 deletions
@@ -1,30 +0,0 @@ -#!/bin/bash - -# no args -json_object_beg() { - echo json_object_beg -} - -# no args -json_object_end() { - echo json_object_end -} - -# no args -json_array_beg() { - echo json_array_beg -} - -# no args -json_array_end() { - echo json_array_end -} - -# $1=(key|string|number|bool|null) $2=$val -json_atom() { - printf 'json_atom %q %q\n' "$1" "$2" -} - -. "$(dirname -- "${BASH_SOURCE[0]}")/json.sh" - -json_parse |