()
| 772 | override toString() { return 'HASH(' + this.value + ')'; } |
| 773 | |
| 774 | override toJSON() { |
| 775 | const json = this.constructor.prototype.constructor.prototype.toJSON.call(this); |
| 776 | json.value = this.value; |
| 777 | json.type = this.type; |
| 778 | return json; |
| 779 | } |
| 780 | |
| 781 | override toSource() { |
| 782 | if (this.type === 'id') |
no test coverage detected