Doc abstract function.

This commit is contained in:
André Cruz
2013-04-14 18:07:13 +01:00
parent 3dbdb541ed
commit 543407920d

View File

@@ -45,16 +45,17 @@ Resolver.prototype.resolve = function () {
.then(this._parseJson.bind(this));
};
Resolver.prototype.hasNew = function (oldResolution) {
return Q.resolve(true);
};
Resolver.prototype.getDependencies = function () {
return this._json.dependencies;
};
// -----------------
Resolver.prototype.hasNew = function (oldResolution) {
return Q.resolve(true);
};
// Abstract function that should be implemented by concrete resolvers
Resolver.prototype._resolveSelf = function () {};
// -----------------