(forceNewCharacterSet: boolean, oldInsight?: Insight, newInsight?: Insight)
| 7 | private chars: string[]; |
| 8 | |
| 9 | public resetCharacterSet(forceNewCharacterSet: boolean, oldInsight?: Insight, newInsight?: Insight) { |
| 10 | if (forceNewCharacterSet || needsNewCharacterSet(oldInsight, newInsight)) { |
| 11 | this.chars = undefined; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | public getCharacterSet(stage: types.Stage) { |
| 16 | if (!this.chars) { |
no test coverage detected