1
1
mirror of https://github.com/wader/fq.git synced 2024-12-23 21:31:33 +03:00

cli: rename fq.jq to interp.jq

This commit is contained in:
Mattias Wadman 2021-08-14 20:00:11 +02:00
parent ae5566a6ce
commit f89329568a
2 changed files with 4 additions and 4 deletions

View File

@ -29,13 +29,13 @@ import (
"github.com/itchyny/gojq" "github.com/itchyny/gojq"
) )
//go:embed fq.jq //go:embed interp.jq
//go:embed internal.jq //go:embed internal.jq
//go:embed funcs.jq //go:embed funcs.jq
//go:embed args.jq //go:embed args.jq
var builtinFS embed.FS var builtinFS embed.FS
var fqInitSource = `include "@builtin/fq";` var initSource = `include "@builtin/interp";`
type valueError struct { type valueError struct {
v interface{} v interface{}
@ -471,7 +471,7 @@ func New(os OS, registry *registry.Registry) (*Interp, error) {
} }
i.includeCache = map[string]*gojq.Query{} i.includeCache = map[string]*gojq.Query{}
i.initFqQuery, err = gojq.Parse(fqInitSource) i.initFqQuery, err = gojq.Parse(initSource)
if err != nil { if err != nil {
return nil, fmt.Errorf("init:%s: %w", queryErrorPosition(err), err) return nil, fmt.Errorf("init:%s: %w", queryErrorPosition(err), err)
} }
@ -793,7 +793,7 @@ type Options struct {
AddrBase int AddrBase int
SizeBase int SizeBase int
Decorator Decorator `json:"-"` Decorator Decorator
BitsFormatFn func(bb *bitio.Buffer) (interface{}, error) BitsFormatFn func(bb *bitio.Buffer) (interface{}, error)
} }