Closed matthias-Q closed 1 year ago
This add recursive CTEs.
I was thinking about an alternative implementation. Instead of
cte: $ => seq( $.identifier, optional(paren_list(field("argument", $.identifier))), $.keyword_as, ...
we could use
cte: $ => seq( choice( $.identifier, $.invocation ), $.keyword_as, ...
But invocation would be more permissive and is technically wrong.
invocation
This add recursive CTEs.
I was thinking about an alternative implementation. Instead of
we could use
But
invocation
would be more permissive and is technically wrong.