(obj, property)
| 7216 | // } |
| 7217 | |
| 7218 | formatProperty(obj, property) { |
| 7219 | if (typeof property === 'symbol') { |
| 7220 | this.append(property.toString()); |
| 7221 | } else { |
| 7222 | this.append(property); |
| 7223 | } |
| 7224 | |
| 7225 | this.append(': '); |
| 7226 | this.format(obj[property]); |
| 7227 | } |
| 7228 | |
| 7229 | append(value) { |
| 7230 | // This check protects us from the rare case where an object has overriden |
no test coverage detected