( operator: LogicalOperator = "_&&_" )
| 270 | }; |
| 271 | |
| 272 | export const emptySimpleExpr = ( |
| 273 | operator: LogicalOperator = "_&&_" |
| 274 | ): ConditionGroupExpr => { |
| 275 | return { |
| 276 | type: ExprType.ConditionGroup, |
| 277 | operator: operator, |
| 278 | args: [], |
| 279 | }; |
| 280 | }; |
| 281 | |
| 282 | const getFactorName = (expr: CELExpr): string => { |
| 283 | if (expr.exprKind?.case === "identExpr") { |
no outgoing calls
no test coverage detected