(self, call)
| 242 | |
| 243 | |
| 244 | var possibleConstructorReturn = function (self, call) { |
| 245 | if (!self) { |
| 246 | throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); |
| 247 | } |
| 248 | |
| 249 | return call && (typeof call === "object" || typeof call === "function") ? call : self; |
| 250 | }; |
| 251 | |
| 252 | |
| 253 |
no outgoing calls
no test coverage detected