| 7 | const _dirname = typeof __dirname !== 'undefined' ? __dirname : path.dirname(fileURLToPath(import.meta.url)) |
| 8 | |
| 9 | export class AstAnalyzerInternalError extends Error { |
| 10 | constructor(message: string) { |
| 11 | super(message) |
| 12 | this.name = 'AstAnalyzerInternalError' |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | const AST_ANALYZER_SUPPORTED_CELL_TYPES_LIST = [ |
| 17 | 'code', |
nothing calls this directly
no outgoing calls
no test coverage detected