(name: string)
| 424 | } |
| 425 | |
| 426 | export function isKnownConstraintFunctionName(name: string): boolean { |
| 427 | return KNOWN_FUNCTION_NAME_SET.has(name); |
| 428 | } |
| 429 | |
| 430 | function visitExpr(node: ExprNode, visitor: (node: ExprNode) => void): void { |
| 431 | visitor(node); |
no test coverage detected