* Helper function to check if an expression is an aggregate
( expr: BasicExpression | Aggregate, )
| 251 | * Helper function to check if an expression is an aggregate |
| 252 | */ |
| 253 | function isAggregateExpression( |
| 254 | expr: BasicExpression | Aggregate, |
| 255 | ): expr is Aggregate { |
| 256 | return expr.type === `agg` |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Processes a single argument in a function context |
no outgoing calls
no test coverage detected