()
| 302 | } |
| 303 | |
| 304 | symbol() { |
| 305 | if (this.isTransition()) return '+'; |
| 306 | if (this.isFastToSlow()) return '⊡'; |
| 307 | if (this.isSlowToFast()) return '⊛'; |
| 308 | if (this.isReplaceDescriptors()) { |
| 309 | if (this.name) return '+'; |
| 310 | return '∥'; |
| 311 | } |
| 312 | return ''; |
| 313 | } |
| 314 | |
| 315 | toString() { |
| 316 | let s = this.symbol(); |
no test coverage detected