Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/subscriptionClasses.js

Issue 29803562: Noissue - Add @link tag for JSDoc references (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Created June 9, 2018, 1:32 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/matcher.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/subscriptionClasses.js
===================================================================
--- a/lib/subscriptionClasses.js
+++ b/lib/subscriptionClasses.js
@@ -225,18 +225,18 @@
if ("disabled" in obj)
result._disabled = (obj.disabled == "true");
return result;
};
/**
* Class for special filter subscriptions (user's filters)
- * @param {string} url see Subscription()
- * @param {string} [title] see Subscription()
+ * @param {string} url see {@link Subscription Subscription()}
+ * @param {string} [title] see {@link Subscription Subscription()}
* @constructor
* @augments Subscription
*/
function SpecialSubscription(url, title)
{
Subscription.call(this, url, title);
}
exports.SpecialSubscription = SpecialSubscription;
@@ -329,18 +329,18 @@
if (!subscription.defaults)
subscription.defaults = ["blocking"];
return subscription;
};
/**
* Abstract base class for regular filter subscriptions (both
* internally and externally updated)
- * @param {string} url see Subscription()
- * @param {string} [title] see Subscription()
+ * @param {string} url see {@link Subscription Subscription()}
+ * @param {string} [title] see {@link Subscription Subscription()}
* @constructor
* @augments Subscription
*/
function RegularSubscription(url, title)
{
Subscription.call(this, url, title || url);
}
exports.RegularSubscription = RegularSubscription;
@@ -401,18 +401,18 @@
buffer.push("homepage=" + this._homepage);
if (this._lastDownload)
buffer.push("lastDownload=" + this._lastDownload);
}
});
/**
* Class for filter subscriptions updated externally (by other extension)
- * @param {string} url see Subscription()
- * @param {string} [title] see Subscription()
+ * @param {string} url see {@link Subscription Subscription()}
+ * @param {string} [title] see {@link Subscription Subscription()}
* @constructor
* @augments RegularSubscription
*/
function ExternalSubscription(url, title)
{
RegularSubscription.call(this, url, title);
}
exports.ExternalSubscription = ExternalSubscription;
@@ -427,18 +427,18 @@
throw new Error(
"Unexpected call, external subscriptions should not be serialized"
);
}
});
/**
* Class for filter subscriptions updated externally (by other extension)
- * @param {string} url see Subscription()
- * @param {string} [title] see Subscription()
+ * @param {string} url see {@link Subscription Subscription()}
+ * @param {string} [title] see {@link Subscription Subscription()}
* @constructor
* @augments RegularSubscription
*/
function DownloadableSubscription(url, title)
{
RegularSubscription.call(this, url, title);
}
exports.DownloadableSubscription = DownloadableSubscription;
« no previous file with comments | « lib/matcher.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld