* Clear all data from the database
()
| 2504 | * Clear all data from the database |
| 2505 | */ |
| 2506 | clear(): void { |
| 2507 | this.nodeCache.clear(); |
| 2508 | this.db.transaction(() => { |
| 2509 | this.db.exec('DELETE FROM unresolved_refs'); |
| 2510 | this.db.exec('DELETE FROM edges'); |
| 2511 | this.db.exec('DELETE FROM nodes'); |
| 2512 | this.db.exec('DELETE FROM files'); |
| 2513 | })(); |
| 2514 | } |
| 2515 | } |
no test coverage detected