| 32 | ] as const |
| 33 | |
| 34 | export interface BlockContentDepsWithOrder { |
| 35 | id: string |
| 36 | definedVariables: string[] |
| 37 | usedVariables: string[] |
| 38 | importedModules?: string[] |
| 39 | importedPackages?: string[] |
| 40 | linesOfCode?: number |
| 41 | error?: { |
| 42 | type: string |
| 43 | message: string |
| 44 | } |
| 45 | order: number |
| 46 | } |
| 47 | |
| 48 | const SUPPORTED_CELL_TYPES = new Set<string>(AST_ANALYZER_SUPPORTED_CELL_TYPES_LIST) |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected