(name: string)
| 190 | }; |
| 191 | |
| 192 | const wrapIdentExpr = (name: string): CELExpr => { |
| 193 | return wrapCELExpr({ |
| 194 | case: "identExpr", |
| 195 | value: create(Expr_IdentSchema, { |
| 196 | name, |
| 197 | }), |
| 198 | }); |
| 199 | }; |
| 200 | |
| 201 | const wrapCallExpr = ( |
| 202 | operator: string, |
no test coverage detected