(id: string)
| 451 | }, |
| 452 | |
| 453 | getAnnotation(id: string): Annotation | undefined { |
| 454 | const row = stmts.getAnnotation.get(id) as Record<string, unknown> | undefined; |
| 455 | return row ? rowToAnnotation(row) : undefined; |
| 456 | }, |
| 457 | |
| 458 | updateAnnotation( |
| 459 | id: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…