(text: string | null)
| 128 | |
| 129 | // ─── Snapshot Diffing ───────────────────────────────────── |
| 130 | setLastSnapshot(text: string | null) { |
| 131 | this.lastSnapshot = text; |
| 132 | } |
| 133 | |
| 134 | getLastSnapshot(): string | null { |
| 135 | return this.lastSnapshot; |
no outgoing calls
no test coverage detected