()
| 53 | }, |
| 54 | |
| 55 | toString(): string { |
| 56 | const callbacks = this._callbacks; |
| 57 | if (callbacks) { |
| 58 | return callbacks.toStringOverride(this, superProto.toString); |
| 59 | } else { |
| 60 | superProto.toString(); |
| 61 | } |
| 62 | }, |
| 63 | }); |
| 64 | |
| 65 | export let fragmentClass: any; |
nothing calls this directly
no test coverage detected