* Get string representation * @param {Object} options * @return {string} str * @override
(options)
| 129 | * @override |
| 130 | */ |
| 131 | _toString (options) { |
| 132 | const entries = [] |
| 133 | for (const key in this.properties) { |
| 134 | if (hasOwnProperty(this.properties, key)) { |
| 135 | entries.push( |
| 136 | stringify(key) + ': ' + this.properties[key].toString(options)) |
| 137 | } |
| 138 | } |
| 139 | return '{' + entries.join(', ') + '}' |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Get a JSON representation of the node |
nothing calls this directly
no test coverage detected