1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Remove variable shadowing from the JavaScript files in the src/core/ folder

*This is part of a series of patches that will try to split PR 11566 into smaller chunks, to make reviewing more feasible.*

Once all the code has been fixed, we'll be able to eventually enable the ESLint no-shadow rule; see https://eslint.org/docs/rules/no-shadow
This commit is contained in:
Jonas Jenwald 2020-03-23 17:04:47 +01:00
parent b86df97725
commit 216cbca16c
11 changed files with 135 additions and 140 deletions

View file

@ -894,12 +894,12 @@ class Catalog {
break;
}
kidPromises.push(
xref.fetchAsync(kid).then(function(kid) {
if (!isDict(kid)) {
xref.fetchAsync(kid).then(function(obj) {
if (!isDict(obj)) {
throw new FormatError("Kid node must be a dictionary.");
}
if (kid.has("Count")) {
total += kid.get("Count");
if (obj.has("Count")) {
total += obj.get("Count");
} else {
// Page leaf node.
total++;