()
| 15640 | return errors |
| 15641 | } |
| 15642 | *getAllErrorsIterator() { |
| 15643 | let line = 1 |
| 15644 | for (let particle of this.getTopDownArrayIterator()) { |
| 15645 | particle._cachedLineNumber = line |
| 15646 | const errs = particle.getErrors() |
| 15647 | // delete particle._cachedLineNumber |
| 15648 | if (errs.length) yield errs |
| 15649 | line++ |
| 15650 | } |
| 15651 | } |
| 15652 | get cue() { |
| 15653 | return this.atoms[0] |
| 15654 | } |
nothing calls this directly
no test coverage detected