()
| 19395 | class ParsersParserConstantInt extends AbstractParserConstantParser {} |
| 19396 | class ParsersParserConstantString extends AbstractParserConstantParser { |
| 19397 | get constantValueAsJsText() { |
| 19398 | return "`" + Utils.escapeBackTicks(this.constantValue) + "`" |
| 19399 | } |
| 19400 | get constantValue() { |
| 19401 | return this.length ? this.subparticlesToString() : this.getAtomsFrom(2).join(" ") |
| 19402 | } |
nothing calls this directly
no test coverage detected