(obj, property)
| 7392 | // } |
| 7393 | |
| 7394 | formatProperty(obj, property) { |
| 7395 | if (typeof property === 'symbol') { |
| 7396 | this.append(property.toString()); |
| 7397 | } else { |
| 7398 | this.append(property); |
| 7399 | } |
| 7400 | |
| 7401 | this.append(': '); |
| 7402 | this.format(obj[property]); |
| 7403 | } |
| 7404 | |
| 7405 | append(value) { |
| 7406 | // This check protects us from the rare case where an object has overriden |
no test coverage detected