(to, from, name)
| 65989 | return; |
| 65990 | } |
| 65991 | Object.setPrototypeOf(to, fromPrototype); |
| 65992 | }; |
| 65993 | var wrappedToString = (withName, fromBody) => `/* Wrapped ${withName}*/ |
| 65994 | ${fromBody}`; |
| 65995 | var toStringDescriptor = Object.getOwnPropertyDescriptor(Function.prototype, "toString"); |
| 65996 | var toStringName = Object.getOwnPropertyDescriptor(Function.prototype.toString, "name"); |
| 65997 | var changeToString = (to, from, name) => { |
| 65998 | const withName = name === "" ? "" : `with ${name.trim()}() `; |
| 65999 | const newToString = wrappedToString.bind(null, withName, from.toString()); |
no test coverage detected