Hello, is there a way to write a pattern that transforms `[ f(1), f(2), .... any number of f(integer) ]` into `map(f, [ 1, 2, any number of integers ])` ? If I understand correctly tree sitter queries support wildcards such as `*`.
Hello, is there a way to write a pattern that transforms
[ f(1), f(2), .... any number of f(integer) ]intomap(f, [ 1, 2, any number of integers ])?If I understand correctly tree sitter queries support wildcards such as
*.