()
| 693 | override toString() { return 'DELIM(' + this.value + ')'; } |
| 694 | |
| 695 | override toJSON() { |
| 696 | const json = this.constructor.prototype.constructor.prototype.toJSON.call(this); |
| 697 | json.value = this.value; |
| 698 | return json; |
| 699 | } |
| 700 | |
| 701 | override toSource() { |
| 702 | if (this.value === '\\') |