()
| 19269 | return `${parserId}: ${this.getRequiredAtomTypeIds().join(" ")}${catchAllAtomTypeId ? ` ${catchAllAtomTypeId}...` : ""}` |
| 19270 | } |
| 19271 | getRequiredAtomTypeIds() { |
| 19272 | if (!this._requiredAtomTypeIds) { |
| 19273 | const parameters = this._definition._getFromExtended(ParsersConstants.atoms) |
| 19274 | this._requiredAtomTypeIds = parameters ? parameters.split(" ") : [] |
| 19275 | } |
| 19276 | return this._requiredAtomTypeIds |
| 19277 | } |
| 19278 | _getAtomTypeId(atomIndex, requiredAtomTypeIds, totalAtomCount) { |
| 19279 | return requiredAtomTypeIds[atomIndex] |
| 19280 | } |
no test coverage detected