implements UserFunctionInvocation
| 23 | |
| 24 | // implements UserFunctionInvocation |
| 25 | type jsInvocation struct { |
| 26 | *functionImpl |
| 27 | db *db.Database |
| 28 | ctx context.Context |
| 29 | args map[string]any |
| 30 | } |
| 31 | |
| 32 | func (fn *jsInvocation) Iterate() (sgbucket.QueryResultIterator, error) { |
| 33 | return nil, nil |
nothing calls this directly
no outgoing calls
no test coverage detected