()
| 16882 | return this.isRoot() || this.parent.isRoot() ? undefined : this.parent.parent |
| 16883 | } |
| 16884 | _getParserPool() { |
| 16885 | if (this._parserPool) return this._parserPool |
| 16886 | if (!Particle._parserPoolsCache.has(this.constructor)) Particle._parserPoolsCache.set(this.constructor, this.createParserPool()) |
| 16887 | return Particle._parserPoolsCache.get(this.constructor) |
| 16888 | } |
| 16889 | createParserPool() { |
| 16890 | return new ParserPool(this.constructor) |
| 16891 | } |
no test coverage detected