We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926c3a9 commit 5fc8758Copy full SHA for 5fc8758
chromium/rules.js
@@ -180,7 +180,7 @@ RuleSets.prototype = {
180
181
potentiallyApplicableRulesets: function(host) {
182
// Return a list of rulesets that apply to this host
183
- var tmp, t;
+
184
// Have we cached this result? If so, return it!
185
var cached_item = ruleCache.get(host);
186
if (cached_item !== undefined) {
@@ -189,6 +189,7 @@ RuleSets.prototype = {
189
}
190
log(DBUG, "Ruleset cache miss for " + host);
191
192
+ var tmp, t;
193
var results = this.global_rulesets.slice(0); // copy global_rulesets
194
if (this.targets[host])
195
results = results.concat(this.targets[host]);
0 commit comments