 Issue 29768682:
  Noissue - Update JSDoc @type for Matcher.filterByKeyword  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore/
    
  
    Issue 29768682:
  Noissue - Update JSDoc @type for Matcher.filterByKeyword  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore/| Index: lib/matcher.js | 
| =================================================================== | 
| --- a/lib/matcher.js | 
| +++ b/lib/matcher.js | 
| @@ -32,17 +32,17 @@ | 
| { | 
| this.clear(); | 
| } | 
| exports.Matcher = Matcher; | 
| Matcher.prototype = { | 
| /** | 
| * Lookup table for filters by their associated keyword | 
| - * @type {Map.<string,Filter>} | 
| + * @type {Map.<string,(Filter|Filter[])>} | 
| 
Manish Jethani
2018/05/02 21:03:54
This can be a filter or an array of filters. I was
 | 
| */ | 
| filterByKeyword: null, | 
| /** | 
| * Lookup table for keywords by the filter | 
| * @type {Map.<Filter,string>} | 
| */ | 
| keywordByFilter: null, |