(errorMessage: string)
| 219 | } |
| 220 | |
| 221 | private readRequiredName(errorMessage: string): string { |
| 222 | const name = this.readName(); |
| 223 | if (!name) throw new Error(errorMessage); |
| 224 | return name; |
| 225 | } |
| 226 | |
| 227 | private readAttributeValue(attributeName: string): string { |
| 228 | const quote = this.xml[this.index]; |
no test coverage detected