(documents: LangiumDocuments, model: Model)
| 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. |
| 452 | */ |
| 453 | export function resolveTransitiveImports(documents: LangiumDocuments, model: Model) { |
| 454 | return resolveTransitiveImportsInternal(documents, model); |
| 455 | } |
| 456 | |
| 457 | function resolveTransitiveImportsInternal( |
| 458 | documents: LangiumDocuments, |
no test coverage detected