(name: string)
| 5693 | cg.resolveReferences(); |
| 5694 | |
| 5695 | const inModels = (name: string) => |
| 5696 | cg.getNodesByKind('class').concat(cg.getNodesByKind('module')) |
| 5697 | .find((n) => n.name === name && n.filePath.endsWith('models.dart')); |
| 5698 | |
| 5699 | // The `with Loggable` mixin records a dependency — editing the mixin surfaces |
| 5700 | // the class that mixes it in (across files). Loggable is a `mixin`, indexed |
no test coverage detected