File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
clj-kondo/clj-kondo.exports/clara/rules/hooks Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 232
232
fn-node (api/list-node
233
233
(list
234
234
(api/token-node 'fn)
235
+ (api/token-node 'query-fn)
235
236
input-args
236
237
production-result))
237
238
new-node (api/map-node
286
287
(api/vector-node
287
288
(vec production-output))))
288
289
fn-node (api/list-node
289
- (cond-> (list (api/token-node 'fn))
290
+ (cond-> (list (api/token-node 'fn) production-name )
290
291
production-docs (concat [production-docs])
291
292
:always (concat [input-args])
292
293
production-opts (concat [production-opts])
337
338
fn-node (api/list-node
338
339
(list
339
340
(api/token-node 'fn)
341
+ (api/token-node 'rule-fn)
340
342
input-args
341
343
production-result))
342
344
new-node (api/map-node
384
386
(vec production-output))
385
387
body-seq))
386
388
fn-node (api/list-node
387
- (cond-> (list (api/token-node 'fn))
389
+ (cond-> (list (api/token-node 'fn) production-name )
388
390
production-docs (concat [production-docs])
389
391
:always (concat [input-args])
390
392
production-opts (concat [production-opts])
You can’t perform that action at this time.
0 commit comments