* Get string representation * @param {Object} options * @return {string} str
(options)
| 169 | * @return {string} str |
| 170 | */ |
| 171 | _toString (options) { |
| 172 | // format the parameters like "[1, 0:5]" |
| 173 | return this.dotNotation |
| 174 | ? ('.' + this.getObjectProperty()) |
| 175 | : ('[' + this.dimensions.join(', ') + ']') |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Get a JSON representation of the node |
nothing calls this directly
no test coverage detected