(err: Error)
| 44 | // We use this hack to recover original AssertionError instance. |
| 45 | const FastCheckGlobalErrorMap = new Map<string, AssertionError>(); |
| 46 | function errorAsKey(err: Error): string { |
| 47 | return '###' + err + '\n' + err.stack + '\n' + JSON.stringify(err) + '###'; |
| 48 | } |
| 49 | |
| 50 | const PG = PropertyGeneric as any; |
| 51 | PG.Property.prototype.run = function(this: any, v: any): any { |