(name: string)
| 405 | if (transitiveDataModel) { |
| 406 | // resolve references in the context of the transitive data model |
| 407 | const scopeProvider = (name: string) => getAllFields(transitiveDataModel).find((f) => f.name === name); |
| 408 | if (isArrayExpr(node.value)) { |
| 409 | node.value.items.forEach((item) => { |
| 410 | if (isReferenceExpr(item)) { |
nothing calls this directly
no test coverage detected