()
| 455 | } |
| 456 | |
| 457 | public replay() { |
| 458 | this.args.forEach((args: xml.ParserEvent) => { |
| 459 | try { |
| 460 | this.next(args); |
| 461 | } catch (e) { |
| 462 | throw this.error(e, args.position); |
| 463 | } |
| 464 | }); |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | interface TemplateProperty { |
no test coverage detected