* Parses the supplied xml string. * @param xmlString The string containing the xml to parse.
(xmlString: string)
| 569 | * @param xmlString The string containing the xml to parse. |
| 570 | */ |
| 571 | public parse(xmlString: string): void { |
| 572 | if (this._processNamespaces) { |
| 573 | this._namespaceStack = []; |
| 574 | } |
| 575 | |
| 576 | this._parser.parse(xmlString); |
| 577 | } |
| 578 | |
| 579 | private static _getNamespacesStackEntry(attributes: any): any { |
| 580 | const stackEntry = {}; |
no test coverage detected