| 19 | // so blitRegion can copy IDs directly (no re-interning) and |
| 20 | // diffEach can compare IDs as integers (no string lookup). |
| 21 | export class CharPool { |
| 22 | private strings: string[] = [' ', ''] // Index 0 = space, 1 = empty (spacer) |
| 23 | private stringMap = new Map<string, number>([ |
| 24 | [' ', 0], |
nothing calls this directly
no outgoing calls
no test coverage detected