()
| 4331 | Object.assign(YieldableError.prototype, MicroProto, StructuralPrototype, { |
| 4332 | [identifier]: "Failure", |
| 4333 | [evaluate]() { |
| 4334 | return fail(this) |
| 4335 | }, |
| 4336 | toString(this: Error) { |
| 4337 | return this.message ? `${this.name}: ${this.message}` : this.name |
| 4338 | }, |