* @since 3.10.0
()
| 1096 | * @since 3.10.0 |
| 1097 | */ |
| 1098 | toString() { |
| 1099 | return Option.getOrElse( |
| 1100 | getExpected(this), |
| 1101 | () => `<enum ${this.enums.length} value(s): ${this.enums.map(([_, value]) => JSON.stringify(value)).join(" | ")}>` |
| 1102 | ) |
| 1103 | } |
| 1104 | /** |
| 1105 | * @since 3.10.0 |
| 1106 | */ |
nothing calls this directly
no test coverage detected