()
| 53269 | var previousPromise; |
| 53270 | this._invoke = function(method, arg) { |
| 53271 | function callInvokeWithMethodAndArg() { |
| 53272 | return new PromiseImpl(function(resolve, reject) { |
| 53273 | invoke(method, arg, resolve, reject); |
| 53274 | }); |
| 53275 | } |
| 53276 | return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); |
| 53277 | }; |
| 53278 | } |
no test coverage detected