MCPcopy Index your code
hub / github.com/angular-ui/ui-grid / Deferred

Function Deferred

lib/test/angular/1.7.0/angular.js:17321–17327  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17319 }
17320
17321 function Deferred() {
17322 var promise = this.promise = new Promise();
17323 //Non prototype methods necessary to support unbound execution :/
17324 this.resolve = function(val) { resolvePromise(promise, val); };
17325 this.reject = function(reason) { rejectPromise(promise, reason); };
17326 this.notify = function(progress) { notifyPromise(promise, progress); };
17327 }
17328
17329
17330 function Promise() {

Callers

nothing calls this directly

Calls 3

resolvePromiseFunction · 0.70
rejectPromiseFunction · 0.70
notifyPromiseFunction · 0.70

Tested by

no test coverage detected