(rctx *runtime.Context, env *exec.Environment, optimize bool, parallel int, readers []sio.Reader, inputs []srcfiles.Input)
| 81 | } |
| 82 | |
| 83 | func Compile(rctx *runtime.Context, env *exec.Environment, optimize bool, parallel int, readers []sio.Reader, inputs []srcfiles.Input) (*exec.Query, error) { |
| 84 | ast, err := parser.ParseFiles(inputs) |
| 85 | if err != nil { |
| 86 | return nil, err |
| 87 | } |
| 88 | return CompileWithAST(rctx, ast, env, optimize, parallel, readers) |
| 89 | } |
| 90 | |
| 91 | func bundleOutputs(rctx *runtime.Context, outputs map[string]vio.Puller, chans *op.DebugChans) vio.Puller { |
| 92 | switch len(outputs) + len(chans.Debug) { |
nothing calls this directly
no test coverage detected