mirror of
https://github.com/wader/fq.git
synced 2024-11-26 10:33:53 +03:00
824e51ec58
Rebase fq changes on latester gojq main. Most notable change visiable to users is that gojq now allows queries as object literal values. For example this now works: {a: 1+2+3} From upstream: 083fb39 refactor code using built-in min and max functions 470db58 bump up to Go 1.23, drop support for Go 1.20 0607aa5 bump up version to 0.12.16 0709341 update CHANGELOG.md for v0.12.16 1324e6e update dependencies 01355e9 improve parser to allow binary operators as object values a41a5f8 fix debug/1 function to be available only when debug/0 is defined f694c1b fix a benchmark test BenchmarkCompile f2559f6 remove private compare function 0cd3a66 improve compiler to abort with error if query is missing 422cc9d refactor stringify function declarations of query 1130c4e refactor program body, rename rules, remove empty actions in parser 8d7ccc9 add tests for immutability of arrays 375e90d remove useless receivers 1b5ce7f set correct offset for multibyte tokens 8874f53 fix tests of exp10 and atan2 failing on some platforms
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
# read by jq-lsp to add additional builtins
|
|
def _can_display: empty;
|
|
def _decode($format; $opts): empty;
|
|
def _display($opts): empty;
|
|
def _eval($expr; $opts): empty;
|
|
def _extkeys: empty;
|
|
def _exttype: empty;
|
|
def _format_func($format; $func): empty;
|
|
def _global_state: empty;
|
|
def _global_state($v): empty;
|
|
def _hexdump($opts): empty;
|
|
def _is_completing: empty;
|
|
def _match_binary($regexp; $flags): empty;
|
|
def _print_color_json($opts): empty;
|
|
def _query_fromstring: empty;
|
|
def _query_tostring: empty;
|
|
def _readline: empty;
|
|
def _readline($opts): empty;
|
|
def _registry: empty;
|
|
def _stdio_info($name): empty;
|
|
def _stdio_read($name; $l): empty;
|
|
def _stdio_write($name): empty;
|
|
def _tobits($opts): empty;
|
|
def _tovalue($opts): empty;
|
|
def open: empty;
|
|
def scope: empty;
|
|
|
|
# TODO: some functions below are from format/* refactor somehow?
|
|
|
|
# used by help.jq
|
|
def to_jq: empty;
|
|
def markdown: empty;
|
|
def _markdown_to_text($width; $header_depth): empty;
|
|
# used by funcs.jq iprint
|
|
def to_radix($base): empty;
|
|
def tobytes: empty;
|
|
def eval($s): empty;
|
|
def trim: empty;
|