()
| 86 | } |
| 87 | |
| 88 | getAuto() { |
| 89 | const preT = this.getPrediction(); |
| 90 | if (preT) return preT; |
| 91 | const lastT = this.getLast(); |
| 92 | if (lastT) return lastT; |
| 93 | return ''; |
| 94 | } |
| 95 | |
| 96 | getAutoText(sourceInfo = false) { |
| 97 | const textParts = [] as string[]; |
nothing calls this directly
no test coverage detected