(e: Expression)
| 1246 | } |
| 1247 | |
| 1248 | function mapList(arg: Json, ctx: Ctx, f: (u: Expression) => boolean): boolean { |
| 1249 | const items = |
| 1250 | Array.isArray(arg) && arg[0] === 'List' ? (arg as Json[]).slice(1) : [arg]; |
| 1251 | return items.every((a) => f(build(a, ctx))); |
| 1252 | } |
| 1253 | |
| 1254 | function linearQ(u: Expression, ctx: Ctx): boolean { |
no outgoing calls
no test coverage detected