()
| 19241 | return this._getEnumOptions() || this._getEnumFromAtomTypeOptions(program) || [] |
| 19242 | } |
| 19243 | get regexString() { |
| 19244 | // todo: enum |
| 19245 | const enumOptions = this._getEnumOptions() |
| 19246 | return this._getFromExtended(ParsersConstants.regex) || (enumOptions ? "(?:" + enumOptions.join("|") + ")" : "[^ ]*") |
| 19247 | } |
| 19248 | _getAllTests() { |
| 19249 | return this._getSubparticlesByParserInExtended(AbstractParsersAtomTestParser) |
| 19250 | } |
nothing calls this directly
no test coverage detected