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

Unified Diff: lib/filterComposer.js

Issue 6445129351036928: Noissue - Fixed issue where JsDoc documented module functions incorrectly (Closed)
Patch Set: Fixed syntax error Created April 18, 2015, 2:54 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 | « no previous file | lib/filterValidation.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/filterComposer.js
===================================================================
--- a/lib/filterComposer.js
+++ b/lib/filterComposer.js
@@ -40,6 +40,7 @@
*
* @param {string} s
* @return {string}
+ * @static
*/
function escapeCSS(s)
{
@@ -52,6 +53,7 @@
*
* @param {string} value
* @return {string}
+ * @static
*/
function quoteCSS(value)
{
@@ -77,7 +79,7 @@
* the list of CSS selectors for the included element
* hiding filters: {filters: [...], selectors: [...]}
*/
-function composeFilters(details)
+exports.composeFilters = function(details)
{
let filters = [];
let selectors = [];
@@ -141,5 +143,4 @@
}
return {filters: filters, selectors: selectors};
-}
-exports.composeFilters = composeFilters;
+};
« no previous file with comments | « no previous file | lib/filterValidation.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld