(fromCid: number)
| 365 | const row = stmt.get(fromCid) as any; |
| 366 | return row ? row.to_cid : undefined; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | class KeywordTasks { |
| 371 | private tasks: KeywordTask[] = []; |
| 372 | |
| 373 | constructor() { |
| 374 | this.loadFromDB(); |
| 375 | } |
| 376 | |
| 377 | add(task: KeywordTask): void { |
no outgoing calls
no test coverage detected