(node: AstNode)
| 444 | |
| 445 | // TODO: move to policy plugin |
| 446 | export function isCheckInvocation(node: AstNode) { |
| 447 | return isInvocationExpr(node) && node.function.ref?.name === 'check'; |
| 448 | } |
| 449 | |
| 450 | /** |
| 451 | * Resolves the transitive imports of the given model and returns the list of imported models. The given model itself is not included in the result. |
no test coverage detected